Skip to content

Commit

Permalink
Merge pull request #7 from digipost/buildscript-bumps
Browse files Browse the repository at this point in the history
Update build.yml with new action versions
  • Loading branch information
hanskhe authored Nov 16, 2023
2 parents 3c09080 + e5d56f4 commit 0b9b98d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ jobs:
name: build java ${{ matrix.java }}
steps:
- name: Checkout reposistory
uses: actions/checkout@master
uses: actions/checkout@v4
- name: Set up java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
server-id: github
cache: 'maven'
- name: Build with Maven
run: mvn -B package --no-transfer-progress --file pom.xml

Expand All @@ -36,7 +39,7 @@ jobs:
else
TAG=${GITHUB_REF#refs/heads/}-SNAPSHOT
fi
echo ::set-output name=version::${TAG//\//-}
echo "version=${TAG//\//-}" >> $GITHUB_OUTPUT
deploy_snapshot:
if: startsWith(github.ref, 'refs/heads/')
Expand All @@ -45,7 +48,7 @@ jobs:

name: Deploy snapshot
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- uses: digipost/[email protected]
with:
sonatype_secrets: ${{ secrets.sonatype_secrets }}
Expand All @@ -59,7 +62,7 @@ jobs:
name: Release to Sonatype
steps:
- name: Check out Git repository
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Release to Central Repository
uses: digipost/[email protected]
with:
Expand Down

0 comments on commit 0b9b98d

Please sign in to comment.