Release v4.10.20 #198
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 Demo | |
| on: | |
| push: | |
| tags: ["v*.*.*"] | |
| workflow_dispatch: | |
| jobs: | |
| deploy-demo: | |
| # Demo instance is down so skip this job for now | |
| if: false | |
| uses: ./.github/workflows/_gcp-deploy.yml | |
| secrets: inherit | |
| permissions: | |
| contents: 'read' | |
| # Requird for OIDC auth with GCP. | |
| # @see: https://docs.github.com/en/actions/security-for-github-actions/security-hardening-your-deployments/about-security-hardening-with-openid-connect#adding-permissions-settings | |
| id-token: 'write' | |
| with: | |
| environment: demo |