Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
mallport committed Oct 13, 2024
2 parents c1f0785 + a89b9f9 commit a16fec6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ jobs:
id: image-tag
run: |
if [ ${{ github.event_name }} == "release" ]; then
semver=${REGISTRY}/${IMAGE}:v${GITHUB_REF}
major_minor_version=${REGISTRY}/${IMAGE}:v$(echo "$GITHUB_REF" | cut -d'.' -f1-2)
major_version=${REGISTRY}/${IMAGE}:v$(echo "$GITHUB_REF" | cut -d'.' -f1)
RELEASE_VERSION=${GITHUB_REF#refs/*/}
semver=${REGISTRY}/${IMAGE}:v${RELEASE_VERSION}
major_minor_version=${REGISTRY}/${IMAGE}:v$(echo "$RELEASE_VERSION" | cut -d'.' -f1-2)
major_version=${REGISTRY}/${IMAGE}:v$(echo "$RELEASE_VERSION" | cut -d'.' -f1)
latest=${REGISTRY}/${IMAGE}:latest
## NAIS image is the image used by NAIS for deployment
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>no.ssb.maskinporten</groupId>
<artifactId>maskinporten-guardian</artifactId>
<version>1.3.19-SNAPSHOT</version>
<version>1.3.20-SNAPSHOT</version>
<packaging>${packaging}</packaging>

<parent>
Expand Down

0 comments on commit a16fec6

Please sign in to comment.