fix: use env_bool instead of env for boolean env #6
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| FLY_STAGING_TOKEN: ${{ secrets.FLY_STAGING_TOKEN }} | |
| jobs: | |
| deploy: | |
| name: Staging | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: superfly/flyctl-actions/setup-flyctl@master | |
| - run: flyctl deploy --access-token "$FLY_STAGING_TOKEN" --config ./fly/staging.toml |