Skip to content

Build, push and deploy to dev (manual) #25

Build, push and deploy to dev (manual)

Build, push and deploy to dev (manual) #25

Workflow file for this run

name: Build, push and deploy to dev (manual)
on:
workflow_dispatch:
jobs:
build:
name: Test and build
uses: ./.github/workflows/.test-and-build.yml
permissions:
contents: read
id-token: write
secrets:
NAIS_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
SLACK_VARSEL_WEBHOOK_URL: ${{ secrets.SLACK_VARSEL_WEBHOOK_URL }}
deploy:
name: Deploy to NAIS (dev)
needs: build
uses: ./.github/workflows/.deploy-to-nais.yml
permissions:
contents: read
id-token: write
with:
NAIS_ENV: dev
IMAGE: ${{ needs.build.outputs.IMAGE }}