exclude creation from existence check (#2323) #298
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
| # See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/ | |
| name: Deploy digger pro | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| deploy: | |
| name: Deploy pro app | |
| runs-on: ubuntu-latest | |
| concurrency: pro-deploy # optional: ensure only one action runs at a time | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: superfly/flyctl-actions/setup-flyctl@master | |
| - run: flyctl deploy --remote-only --config fly-pro.toml | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLYIO_PRO_TOKEN }} |