This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
Fikset veiloppfolging url i dev #2466
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, deploy 💪 | |
on: [ push ] | |
jobs: | |
test-build-and-push: | |
name: Test, build and push | |
permissions: | |
contents: "read" | |
id-token: "write" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Maven cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-maven- | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Build with Maven | |
run: | | |
locale | |
java --version | |
mvn -Pgithub -B package --settings maven-settings.xml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: docker-build-push | |
uses: nais/docker-build-push@v0 | |
id: docker-build-push | |
with: | |
team: paw | |
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} | |
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} | |
outputs: | |
image: ${{ steps.docker-build-push.outputs.image }} | |
deploy-dev: | |
name: Deploy to dev gcp | |
needs: test-build-and-push | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/dev') | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Deploy to Dev | |
uses: nais/deploy/actions/deploy@v1 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
CLUSTER: dev-gcp | |
DRY_RUN: false | |
RESOURCE: nais/nais-dev-gcp.yaml | |
VAR: image=${{ needs.test-build-and-push.outputs.image }} | |
deploy-prod: | |
name: Deploy to prod-gcp | |
needs: test-build-and-push | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Deploy to production | |
uses: nais/deploy/actions/deploy@v1 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
CLUSTER: prod-gcp | |
DRY_RUN: false | |
RESOURCE: nais/nais-prod-gcp.yaml | |
VAR: image=${{ needs.test-build-and-push.outputs.image }} | |
# release: | |
# name: Tag and release | |
# needs: deploy-prod | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# name: Checkout | |
# | |
# - name: Lag tag for release | |
# run: echo "TAG=$(git log -1 --pretty='%ad_%h' --date=format:'%Y%m%d%H%M%S')" >> $GITHUB_ENV | |
# | |
# - name: Create release | |
# uses: softprops/action-gh-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# tag_name: release/prod@${{ env.TAG }} | |
# name: Release to prod | |
# prerelease: false | |
apply-apitoken-unleash: | |
name: Legger til ApiToken for Unleash | |
runs-on: ubuntu-latest | |
needs: [test-build-and-push] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: deploy to dev | |
uses: nais/deploy/actions/deploy@v1 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
CLUSTER: dev-gcp | |
RESOURCE: nais/unleash-apitoken-dev.yaml | |
- name: deploy to prod | |
uses: nais/deploy/actions/deploy@v1 | |
env: | |
APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} | |
CLUSTER: prod-gcp | |
RESOURCE: nais/unleash-apitoken-prod.yaml |