Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

👷 build fly

+17
+17
.github/workflows/deploy.yml
··· 1 + name: Fly Deploy 2 + on: 3 + push: 4 + branches: 5 + - master 6 + jobs: 7 + deploy: 8 + name: Deploy app 9 + runs-on: ubuntu-latest 10 + steps: 11 + - uses: actions/checkout@v3 12 + - uses: superfly/flyctl-actions/setup-flyctl@master 13 + - run: 14 + flyctl deploy --config apps/server/fly.toml 15 + --dockerfile apps/server/Dockerfile --remote-only 16 + env: 17 + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}