Create Dev Night Email Campaign #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Create Dev Night Email Campaign" | |
on: | |
workflow_dispatch: | |
jobs: | |
dev-night-campaign: | |
name: Dev Night Campaign | |
runs-on: ubuntu-latest | |
env: | |
ASSET_BASE_URL: ${{ secrets.ASSET_BASE_URL }} | |
SGF_MEETUP_API_BASE_URL: ${{ secrets.SGF_MEETUP_API_BASE_URL }} | |
SGF_MEETUP_API_TOKEN: ${{ secrets.SGF_MEETUP_API_TOKEN }} | |
LISTMONK_URL: ${{ secrets.LISTMONK_URL }} | |
LISTMONK_USERNAME: ${{ secrets.LISTMONK_USERNAME }} | |
LISTMONK_PASSWORD: ${{ secrets.LISTMONK_PASSWORD }} | |
DEV_NIGHT_LIST_ID: ${{ secrets.DEV_NIGHT_LIST_ID }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm ci | |
- run: npm run dev-night-campaign |