ec5bd715b1
Sync campaigns / sync (push) Successful in 17s
Only the campaign(s) whose files changed in this push get resolved and diffed against listmonk now, instead of every campaign every time -- falls back to a full scan automatically if the before-commit can't be determined. fetch-depth: 0 so that commit is always available to diff against locally.
24 lines
710 B
YAML
24 lines
710 B
YAML
name: Sync default campaign template
|
|
on:
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
sync-template:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.23.1"
|
|
|
|
- name: Install eec-campaigns
|
|
run: go install gitea.reground.org/will/eec-campaigns@v0.1.7
|
|
|
|
- name: Sync template to listmonk
|
|
run: eec-campaigns template "Thistle & Moth default" email-templates/campaign.html
|
|
env:
|
|
LISTMONK_BASE_URL: ${{ secrets.CAMPAIGNS_LISTMONK_BASE_URL }}
|
|
LISTMONK_API_USER: ${{ secrets.CAMPAIGNS_LISTMONK_API_USER }}
|
|
LISTMONK_API_TOKEN: ${{ secrets.CAMPAIGNS_LISTMONK_API_TOKEN }}
|