Fly Deploy #135
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: Fly Deploy | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy app | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Send Deployment Starting Notification | |
env: | |
ZULIP_SITE: "https://upai.zulipchat.com" | |
ZULIP_EMAIL: "[email protected]" | |
ZULIP_API_KEY: ${{ secrets.ZULIP_API_KEY }} | |
run: | | |
./scripts/notify-deploy start | |
- run: flyctl deploy --remote-only | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
- name: Send Deployment Complete Notification | |
env: | |
ZULIP_SITE: "https://upai.zulipchat.com" | |
ZULIP_EMAIL: "[email protected]" | |
ZULIP_API_KEY: ${{ secrets.ZULIP_API_KEY }} | |
run: | | |
./scripts/notify-deploy |