remove deploy script for my personal instance

This commit is contained in:
Will Norris 2023-05-09 11:20:11 -07:00
parent 5afd9081d8
commit 4229b98cb3
2 changed files with 0 additions and 56 deletions

View file

@ -1,23 +0,0 @@
name: deploy
on:
workflow_run:
workflows: [Docker]
types: [completed]
branches: [main]
workflow_dispatch:
concurrency:
group: production
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
environment: production
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl -c etc/fly.toml deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}