Skip to content

Commit

Permalink
fix: do not use wrapper since it's not set up
Browse files Browse the repository at this point in the history
  • Loading branch information
metacosm committed Mar 22, 2024
1 parent 3a4a67d commit 54b8dea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/native-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- name: 'Build Native Image'
run: |
pushd server
./mvnw -ntp -B --file pom.xml -Pnative package -DskipTests
mvn -ntp -B --file pom.xml -Pnative package -DskipTests
popd
- name: 'Create distribution'
run: |
pushd server
./mvnw -ntp -B --file pom.xml -Pdist package -DskipTests
mvn -ntp -B --file pom.xml -Pdist package -DskipTests
popd
- name: 'Upload build artifact'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ jobs:
- name: 'Build Native Image'
run: |
pushd server
./mvnw -ntp -B --file pom.xml -Pnative package -DskipTests
mvn -ntp -B --file pom.xml -Pnative package -DskipTests
popd
- name: 'Create distribution'
run: |
pushd server
./mvnw -ntp -B --file pom.xml -Pdist package -DskipTests
mvn -ntp -B --file pom.xml -Pdist package -DskipTests
popd
- name: 'Upload build artifact'
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pushd server
./mvnw -ntp -B --file pom.xml -Prelease -DartifactsDir=artifacts jreleaser:full-release
mvn -ntp -B --file pom.xml -Prelease -DartifactsDir=artifacts jreleaser:full-release
popd server
- name: 'JReleaser output'
Expand Down

0 comments on commit 54b8dea

Please sign in to comment.