From e56a81b3c700d7bf893cb49b77da97793bf81e8a Mon Sep 17 00:00:00 2001 From: Jesper Paulsen Date: Thu, 14 Sep 2023 11:33:11 +0200 Subject: [PATCH] [KAIZEN-0] Gi skrivetilgang til workflow --- .github/workflows/main.yml | 144 +++++++++++++++++++------------------ 1 file changed, 73 insertions(+), 71 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d17fc4e111..2c34a5b240 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,78 +3,80 @@ name: Build, push, and deploy on: [push] env: - IMAGE: ghcr.io/${{ github.repository }}/modiapersonoversikt:${{ github.sha }} - SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - CI: true - TZ: Europe/Oslo - Q1_TEST_BRANCH: refs/heads/branch_name + IMAGE: ghcr.io/${{ github.repository }}/modiapersonoversikt:${{ github.sha }} + SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} + CI: true + TZ: Europe/Oslo + Q1_TEST_BRANCH: refs/heads/branch_name jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: '16.13.1' - cache: 'npm' - - name: Install dependencies - run: npm ci - - name: Test - run: npm run test - - name: Build - run: npm run build - - name: Upload sourcemaps - if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/master' || github.ref == env.Q1_TEST_BRANCH - run: npm run upload-sourcemaps - - name: Publish Docker image - if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/master' || github.ref == env.Q1_TEST_BRANCH - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - echo ${GITHUB_TOKEN} | docker login ghcr.io -u ${GITHUB_REPOSITORY} --password-stdin - docker build --tag ${IMAGE} . - docker push ${IMAGE} - - name: Deploy to Q1 (Test branch) - uses: nais/deploy/actions/deploy@v1 - if: github.ref == env.Q1_TEST_BRANCH - env: - APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} - PRINT_PAYLOAD: true - CLUSTER: dev-fss - RESOURCE: .nais/qa-template.yaml - VAR: q_env=q1,version=${{ github.sha }} + build: + name: Build + runs-on: ubuntu-latest + permissions: + packages: write + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '16.13.1' + cache: 'npm' + - name: Install dependencies + run: npm ci + - name: Test + run: npm run test + - name: Build + run: npm run build + - name: Upload sourcemaps + if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/master' || github.ref == env.Q1_TEST_BRANCH + run: npm run upload-sourcemaps + - name: Publish Docker image + if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/master' || github.ref == env.Q1_TEST_BRANCH + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + echo ${GITHUB_TOKEN} | docker login ghcr.io -u ${GITHUB_REPOSITORY} --password-stdin + docker build --tag ${IMAGE} . + docker push ${IMAGE} + - name: Deploy to Q1 (Test branch) + uses: nais/deploy/actions/deploy@v1 + if: github.ref == env.Q1_TEST_BRANCH + env: + APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} + PRINT_PAYLOAD: true + CLUSTER: dev-fss + RESOURCE: .nais/qa-template.yaml + VAR: q_env=q1,version=${{ github.sha }} - deploy-qa: - name: Deploy to preprod - needs: build - if: github.ref == 'refs/heads/dev' - runs-on: ubuntu-latest - strategy: - matrix: - q_env: [q0, q1] - steps: - - uses: actions/checkout@v3 - - uses: nais/deploy/actions/deploy@v1 - env: - APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} - PRINT_PAYLOAD: true - CLUSTER: dev-fss - RESOURCE: .nais/qa-template.yaml - VAR: q_env=${{ matrix.q_env }},version=${{ github.sha }} + deploy-qa: + name: Deploy to preprod + needs: build + if: github.ref == 'refs/heads/dev' + runs-on: ubuntu-latest + strategy: + matrix: + q_env: [q0, q1] + steps: + - uses: actions/checkout@v3 + - uses: nais/deploy/actions/deploy@v1 + env: + APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} + PRINT_PAYLOAD: true + CLUSTER: dev-fss + RESOURCE: .nais/qa-template.yaml + VAR: q_env=${{ matrix.q_env }},version=${{ github.sha }} - deploy-prod: - name: Deploy to prod - needs: build - if: github.ref == 'refs/heads/master' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: nais/deploy/actions/deploy@v1 - env: - APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} - PRINT_PAYLOAD: true - CLUSTER: prod-fss - RESOURCE: .nais/prod.yaml - VAR: version=${{ github.sha }} + deploy-prod: + name: Deploy to prod + needs: build + if: github.ref == 'refs/heads/master' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: nais/deploy/actions/deploy@v1 + env: + APIKEY: ${{ secrets.NAIS_DEPLOY_APIKEY }} + PRINT_PAYLOAD: true + CLUSTER: prod-fss + RESOURCE: .nais/prod.yaml + VAR: version=${{ github.sha }}