Skip to content

revert this commit

revert this commit #8

Workflow file for this run

on:
push:
branches: [develop, staging, main]
jobs:
dev:
name: deploy cloudrun to dev environment
if: ${{ github.ref == 'refs/heads/develop' || github.base_ref == 'develop' }}
uses: ./.github/workflows/_deployment.yaml
permissions:
id-token: write
contents: read
with:
environment: development
ref: ${{ github.sha }}
secrets: inherit
staging:
if: ${{ github.ref == 'refs/heads/staging' || github.base_ref == 'staging' }}
uses: ./.github/workflows/_deployment.yaml
permissions:
id-token: write
contents: read
with:
environment: staging
ref: ${{ github.sha }}
secrets: inherit
prod:
if: ${{ github.ref == 'refs/heads/main' || github.base_ref == 'main' }}
uses: ./.github/workflows/_deployment.yaml
permissions:
id-token: write
contents: read
with:
environment: production
ref: ${{ github.sha }}
secrets:
WIF_PROVIDER: ${{ secrets.WIF_PROVIDER }}
WIF_SERVICE_ACCOUNT: ${{ secrets.WIF_SERVICE_ACCOUNT }}