Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Bump tough-cookie from 4.0.0 to 4.1.3 in /vtp-pensjon-frontend #1568

Bump tough-cookie from 4.0.0 to 4.1.3 in /vtp-pensjon-frontend

Bump tough-cookie from 4.0.0 to 4.1.3 in /vtp-pensjon-frontend #1568

Workflow file for this run

name: Bygg og deploy
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
env:
IMAGE_BASE_GHCR: ghcr.io/${{ github.repository }}/vtp-pensjon
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
# - name: Cache Docker layers
# uses: actions/cache@v3
# with:
# path: /tmp/.buildx-cache
# key: ${{ runner.os }}-buildx-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-
- uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 11
cache: 'maven'
- name: Define version
shell: bash
run: |
TIME=$(TZ="Europe/Oslo" date +%Y.%m.%d-%H.%M)
COMMIT=$(git rev-parse --short=12 HEAD)
export VERSION="$TIME-$COMMIT"
echo "Building version $VERSION"
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Build
shell: bash
run: |
export NODE_OPTIONS=--openssl-legacy-provider
mvn -T1C verify -Drevision="${VERSION}" -Dfile.encoding=UTF-8 -Dkotlin.format.skip=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image
env:
VERSION: ${{ env.VERSION }}
run: |
export DOCKER_BUILDKIT=1
docker build --pull \
--tag ${IMAGE_BASE_GHCR}:${VERSION} \
--tag ${IMAGE_BASE_GHCR}:latest \
.
- name: Log in to the Container registry
if: github.ref == 'refs/heads/main'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Docker image
if: github.ref == 'refs/heads/main'
run: |
docker push ${IMAGE_BASE_GHCR}:latest
docker push ${IMAGE_BASE_GHCR}:${VERSION}
env:
VERSION: ${{ env.VERSION }}
- name: Deploy Maven Artifacts
if: github.ref == 'refs/heads/main'
shell: bash
run: |
export NODE_OPTIONS=--openssl-legacy-provider
mvn -T1C deploy -Drevision="${VERSION}" -Dfile.encoding=UTF-8 -Dkotlin.format.skip=true -Dkotlin.check.skip=true -DskipTests source:jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}