Files
thistleandmoth-campaigns/.gitea/workflows/test.yml
T
will 8ee538dd67
Sync campaigns / sync (push) Failing after 17s
Bump eec-campaigns pin to v0.1.4
v0.1.4 fixes several bugs found while testing on twosquirrelspress-campaigns:
- test-send failed validation on empty name/messenger fields (v0.1.1, v0.1.2)
- campaigns went out HTML-only; listmonk never derives a plaintext
  alternative on its own, so altbody is now sent explicitly (v0.1.3)
- change-detection now tracks altbody so campaigns synced before this
  fix actually pick it up on their next sync (v0.1.4)

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-23 22:18:38 -04:00

33 lines
904 B
YAML

name: Test-send campaign
on:
workflow_dispatch:
inputs:
slug:
description: "Campaign slug (campaigns/<slug>/) to preview"
required: true
type: string
email:
description: "Address to send the preview to"
required: true
type: string
jobs:
test:
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.4
- name: Send preview
run: eec-campaigns test "${{ inputs.slug }}" "${{ inputs.email }}"
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 }}