Merge pull request #434 from SableClient/release #84
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: Cloudflare Infra | |
| on: | |
| pull_request: | |
| paths: | |
| - 'infra/web/**' | |
| - '.github/workflows/cloudflare-web-deploy.yml' | |
| - '.github/actions/prepare-tofu/**' | |
| - '.github/actions/setup/**' | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| inputs: | |
| git_tag: | |
| description: 'Git tag to deploy (e.g. v1.2.3). Leave empty to deploy current HEAD.' | |
| required: false | |
| type: string | |
| env: | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.TF_CLOUDFLARE_API_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TF_VAR_workers_message: ${{ github.event_name == 'pull_request' && github.event.pull_request.title || github.event.head_commit.message || github.sha }} | |
| TF_VAR_account_id: ${{ secrets.TF_VAR_ACCOUNT_ID }} | |
| TF_VAR_zone_id: ${{ secrets.TF_VAR_ZONE_ID }} | |
| TF_HTTP_ADDRESS: ${{ secrets.TF_HTTP_ADDRESS }} | |
| TF_HTTP_LOCK_ADDRESS: ${{ secrets.TF_HTTP_LOCK_ADDRESS }} | |
| TF_HTTP_UNLOCK_ADDRESS: ${{ secrets.TF_HTTP_UNLOCK_ADDRESS }} | |
| TF_HTTP_USERNAME: ${{ secrets.TF_HTTP_USERNAME }} | |
| TF_HTTP_PASSWORD: ${{ secrets.TF_HTTP_PASSWORD }} | |
| TF_HTTP_LOCK_METHOD: 'POST' | |
| TF_HTTP_UNLOCK_METHOD: 'DELETE' | |
| TF_HTTP_RETRY_WAIT_MIN: '5' | |
| concurrency: | |
| group: cloudflare-infra | |
| cancel-in-progress: false | |
| jobs: | |
| plan: | |
| if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| defaults: | |
| run: | |
| working-directory: infra/web | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Prepare OpenTofu deployment | |
| uses: ./.github/actions/prepare-tofu | |
| with: | |
| is_release_tag: ${{ startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.git_tag != '') }} | |
| env: | |
| VITE_SENTRY_DSN: ${{ secrets.VITE_SENTRY_DSN }} | |
| VITE_SENTRY_ENVIRONMENT: production | |
| VITE_APP_VERSION: ${{ github.ref_name }} | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
| SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
| SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | |
| - name: Comment PR plan | |
| uses: dflook/tofu-plan@3f5dc358343fb58cd60f83b019e810315aa8258f # v2.2.3 | |
| with: | |
| path: infra/web | |
| label: production | |
| apply: | |
| if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')) || github.event_name == 'workflow_dispatch' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: infra/web | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| ref: ${{ github.event_name == 'workflow_dispatch' && inputs.git_tag || '' }} | |
| - name: Prepare OpenTofu deployment | |
| uses: ./.github/actions/prepare-tofu | |
| with: | |
| is_release_tag: ${{ startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.git_tag != '') }} | |
| env: | |
| VITE_SENTRY_DSN: ${{ secrets.VITE_SENTRY_DSN }} | |
| VITE_SENTRY_ENVIRONMENT: production | |
| VITE_APP_VERSION: ${{ github.ref_name }} | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
| SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
| SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | |
| - name: Plan infrastructure | |
| run: tofu plan -input=false -no-color | |
| - name: Apply infrastructure | |
| run: tofu apply -input=false -auto-approve |