payments pending: show the next one if there are more than 1 - was sh… #39
Workflow file for this run
This file contains hidden or 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: Deploy to Fly on Tag | |
| on: | |
| push: | |
| tags: | |
| - "**-wlce" | |
| - "**-hmce" | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| jobs: | |
| deploy-wlce: | |
| name: Deploy to wlce | |
| if: contains(github.ref, '-wlce') | |
| uses: ./.github/workflows/deploy-template.yml | |
| with: | |
| environment: wlce | |
| fly_config: fly/fly.wlce.toml | |
| secrets: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
| deploy-hmce: | |
| name: Deploy to hmce | |
| if: contains(github.ref, '-hmce') | |
| uses: ./.github/workflows/deploy-template.yml | |
| with: | |
| environment: hmce | |
| fly_config: fly/fly.hmce.toml | |
| secrets: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |