Files
cateconners-campaigns/.gitea/workflows/sync-template.yml
T
will 3cf07ebfbd
Sync campaigns / sync (push) Failing after 22s
Customize campaigns-template for cateconners.com
Rename default template, restyle campaign email to the Fantasy Michigan
palette, write a short domain-specific README.
2026-07-20 14:29:50 -04:00

24 lines
707 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.0
- name: Sync template to listmonk
run: eec-campaigns template "cateconners 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 }}