Skip to content

Commit

Permalink
enable gpg signing
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkir committed May 22, 2024
1 parent 43e8d5d commit 4cfc9df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/30_release-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,14 @@ jobs:
echo -e "#\n# RELEASE build and deploy to artifactory\n#\n"
MAVEN_OPTS="-Dtycho.localArtifacts=ignore -Dmaven.repo.local=.local_m2_cache"
./build.sh --jar-signing --deploy
./build.sh --jar-signing --gpg-signing --deploy
continue-on-error: true

- name: create release
shell: bash
env:
GH_TOKEN: ${{ github.token }}
RELEASE_VERSION: '${{ github.event.inputs.release-version }}'
run: |
pom_version=$(grep -oPm1 "(?<=<version>)[^<]+" "pom.xml")
if [[ $pom_version =~ ([0-9]+)\.([0-9]+)\.([0-9]+)(.*) ]]; then
Expand All @@ -93,7 +94,7 @@ jobs:
exit 1
fi
version=$major.$minor.$bugfix
release=rel_$version
release=rel_$RELEASE_VERSION
snapshot=snapshot_$version
PRODUCTS=$(find releng/products/target -name 'example.rcp.app.ui.*' -type f)
REPO_PRODUCT=$(find releng/products/target -name 'products-*.zip' -type f)
Expand All @@ -116,6 +117,7 @@ jobs:
shell: bash
env:
GH_TOKEN: ${{ github.token }}
NEXT_SNAPSHOT_VERSION: '${{ github.event.inputs.next-snaphot-version }}'
run:
echo -e "#\n# start next development cycle with new version $NEXT_SNAPSHOT_VERSION\n#\n"
./mvnw org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=$NEXT_SNAPSHOT_VERSION
Expand Down

0 comments on commit 4cfc9df

Please sign in to comment.