Openstatus www.openstatus.dev
6
fork

Configure Feed

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

Add Fly.io deployment workflow for private-location app (#1758)

* Initial plan

* Add GitHub workflow for deploying private-location app

Co-authored-by: thibaultleouay <13894054+thibaultleouay@users.noreply.github.com>

* Add explicit permissions to deploy-private-location workflow

Co-authored-by: thibaultleouay <13894054+thibaultleouay@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: thibaultleouay <13894054+thibaultleouay@users.noreply.github.com>

authored by

Copilot
thibaultleouay
copilot-swe-agent[bot]
and committed by
GitHub
713c0bec 798070c5

+24
+24
.github/workflows/deploy-private-location.yml
··· 1 + name: Fly Deploy Private Location 2 + on: 3 + push: 4 + branches: 5 + - main 6 + paths: 7 + - "apps/private-location/**" 8 + - "apps/checker/**" 9 + jobs: 10 + deploy-private-location: 11 + name: Deploy Private Location 12 + runs-on: depot-ubuntu-24.04-4 13 + timeout-minutes: 15 14 + permissions: 15 + contents: read 16 + steps: 17 + - uses: actions/checkout@v4 18 + - uses: superfly/flyctl-actions/setup-flyctl@master 19 + - working-directory: apps/private-location 20 + name: Deploy Private Location 21 + run: | 22 + flyctl deploy --remote-only --wait-timeout=500 23 + env: 24 + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}