Tilpasser tester til tre nye kolonner i sakstatistikk. #1982
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: Test, build, push and deploy | |
on: push | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
PRINT_PAYLOAD: true | |
jobs: | |
test: | |
if: github.ref != 'refs/heads/main' | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Run maven tests | |
run: mvn -B verify | |
test-build-and-push: | |
if: github.ref == 'refs/heads/main' | |
name: Test, build and push image | |
outputs: | |
image: ${{ steps.docker-build-push.outputs.image }} | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build maven artifacts | |
run: mvn -B package | |
- name: Build and push Docker image | |
uses: nais/docker-build-push@v0 | |
id: docker-build-push | |
with: | |
team: obo | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
deploy-dev: | |
if: github.ref == 'refs/heads/main' | |
name: Deploy application to dev-gcp | |
needs: test-build-and-push | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Deploy application | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: dev-gcp | |
RESOURCE: .nais/application/application-config-dev.yaml | |
VAR: image=${{ needs.test-build-and-push.outputs.image }} | |
deploy-prod: | |
if: github.ref == 'refs/heads/main' | |
name: Deploy application to prod-gcp | |
needs: [test-build-and-push, deploy-dev] | |
permissions: | |
id-token: write | |
contents: write # Create release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Deploy application | |
uses: nais/deploy/actions/deploy@v2 | |
env: | |
CLUSTER: prod-gcp | |
RESOURCE: .nais/application/application-config-prod.yaml | |
VAR: image=${{ needs.test-build-and-push.outputs.image }} | |
- name: Create release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: Create release | |
tag_name: release/prod@${{ env.IMAGE_TAG }} | |
prerelease: false |