fix: upgrade org.flywaydb:flyway-core from 9.20.1 to 9.21.0 (#102) #256
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: Build, push and deploy | |
on: push | |
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 }} | |
deploy-prod: | |
name: Deploy application to prod | |
if: github.ref == 'refs/heads/master' | |
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: prod-fss | |
RESOURCE: .nais/application/application-config-prod.yaml | |
VAR: version=${{ env.IMAGE_TAG }} | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: Release to prod | |
target_commitish: master | |
tag_name: release/prod@${{ env.IMAGE_TAG }} | |
prerelease: false |