-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
431ea4a
commit 94045b7
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Build and deploy dev-gcp | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- gcp-premigrering | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
jobs: | ||
build_and_deploy: | ||
name: Build, push and deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Push docker image to GAR | ||
uses: nais/docker-build-push@v0 | ||
id: docker-build-push | ||
with: | ||
team: dab | ||
owner: dab | ||
dockerfile: dummy-app/Dockerfile | ||
image_suffix: dummy | ||
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} # Provided as Organization Secret | ||
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} # Provided as Organization Variable | ||
- name: Deploy to NAIS | ||
uses: nais/deploy/actions/deploy@v2 | ||
env: | ||
CLUSTER: prod-gcp | ||
APIKEY: ${{ secrets.DAB_NAIS_DEPLOY_APIKEY }} | ||
RESOURCE: nais/nais-dev-gcp.yaml | ||
VAR: image=${{ steps.docker-build-push.outputs.image }} |