Skip to content

Commit

Permalink
Legg til workflow for å deploye manuelt til dev
Browse files Browse the repository at this point in the history
  • Loading branch information
slovrid committed Oct 25, 2023
1 parent 954eb92 commit eb8c556
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/deploy-til-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Build, push and deploy
on:
workflow_dispatch:

env:
IMAGE_TAG: ${{ github.sha }}
IMAGE: ghcr.io/${{ github.repository }}/veilarboppgave
PRINT_PAYLOAD: true

permissions:
packages: write
contents: write

jobs:
test:
name: Run tests
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Run maven tests
run: mvn -B verify

test-build-and-push:
name: Test, build and push
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'

- name: Build maven artifacts
run: mvn -Dgithub.token=${{ secrets.GITHUB_TOKEN }} -B package -D skipTests

- name: Login to Docker
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ env.IMAGE }}:${{ env.IMAGE_TAG }}

deploy-dev:
name: Deploy application to dev
if: github.ref == 'refs/heads/dev'
needs: test-build-and-push
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Deploy application
uses: nais/deploy/actions/deploy@v1
env:
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }}
CLUSTER: dev-fss
RESOURCE: .nais/application/application-config-dev.yaml
VAR: version=${{ env.IMAGE_TAG }}

0 comments on commit eb8c556

Please sign in to comment.