Skip to content

Commit 9c7206d

Browse files
authored
Update release.yml: fix
as the native releases are deployed via `mvn` they first have to be moved and not afterwards
1 parent be4ab47 commit 9c7206d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and deploy a release including native-images
1+
name: Release
22

33
# Runs manually
44
on:
@@ -75,8 +75,8 @@ jobs:
7575
git commit -m "set release version to ${next_version}"
7676
git tag -a "release/${next_version}" -m "tagged version ${next_version}"
7777
export GPG_TTY=$TTY
78-
mvn --settings .mvn/settings.xml -B -ntp deploy -Pdeploy -Dgpg.pin.entry.mode=loopback -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}
7978
mv ./natives/* ./cli/target/
79+
mvn --settings .mvn/settings.xml -B -ntp deploy -Pdeploy -Dgpg.pin.entry.mode=loopback -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}
8080
env:
8181
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
8282
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}

0 commit comments

Comments
 (0)