docs: nport-api is deleted from staging #77
Workflow file for this run
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 staging | |
| # A caller, not a copy. Everything it does lives in `deploy.yml`, which production will call with | |
| # its own two values when G2 closes — so a fix to a deploy step reaches both by construction. | |
| on: | |
| push: | |
| branches: [v3-new-architect] | |
| workflow_dispatch: | |
| # One deploy at a time, and never cancel one half-way: an interrupted `wrangler deploy` can leave a | |
| # Worker live on new code with a Durable Object migration half-applied, and migrations are | |
| # forward-only (`docs/RELEASE.md`). Queueing is the slow, correct behaviour. | |
| concurrency: | |
| group: deploy-staging | |
| cancel-in-progress: false | |
| permissions: | |
| contents: read | |
| jobs: | |
| staging: | |
| uses: ./.github/workflows/deploy.yml | |
| with: | |
| environment: staging | |
| zone: nport.online | |
| tf_organization: NportLink | |
| secrets: inherit |