IS-2542: Add support for sending manglende medvirkning varsel #100
Workflow file for this run
This file contains 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 topic" | |
on: | |
push: | |
paths: | |
- nais/topics/** | |
- .github/workflows/topic.yaml | |
jobs: | |
deploy-topic-to-dev: | |
name: Deploy topic to dev | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Deploy topic varselbus to dev | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: dev-gcp | |
RESOURCE: nais/topics/varselbus-topic-dev.yaml | |
deploy-topic-to-prod: | |
if: github.ref == 'refs/heads/main' | |
name: Deploy topic to prod | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Deploy topic varselbus to prod | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: prod-gcp | |
RESOURCE: nais/topics/varselbus-topic-prod.yaml |