diff --git a/.github/release.sh b/.github/release.sh index fba1bf4..3f329d3 100755 --- a/.github/release.sh +++ b/.github/release.sh @@ -11,7 +11,7 @@ if [ "$git_branch" == "main" ]; then fi # Set up release tag. -read -rp "Enter tag (example: v1.0.0) " git_tag +read -rp "Enter tag (example: v1.0.9) " git_tag git push origin ":refs/tags/$git_tag" git tag -fa "$git_tag" -m "Release $git_tag" git push -u origin "$git_tag" diff --git a/example-workflows/java1.8/deploy.yml b/example-workflows/java1.8/deploy.yml index 8cddb89..a60e367 100644 --- a/example-workflows/java1.8/deploy.yml +++ b/example-workflows/java1.8/deploy.yml @@ -29,7 +29,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_CENTRAL_GPG_SIGNING_KEY_SEC }} gpg-passphrase: MAVEN_CENTRAL_GPG_PASSPHRASE - name: Deploy SNAPSHOT / Release - uses: camunda-community-hub/community-action-maven-release@v1 + uses: camunda-community-hub/community-action-maven-release@v1.0.9 with: release-version: ${{ github.event.release.tag_name }} release-profile: release diff --git a/example-workflows/java11/deploy.yml b/example-workflows/java11/deploy.yml index f54541f..d3e78f7 100644 --- a/example-workflows/java11/deploy.yml +++ b/example-workflows/java11/deploy.yml @@ -29,7 +29,7 @@ jobs: gpg-private-key: ${{ secrets.MAVEN_CENTRAL_GPG_SIGNING_KEY_SEC }} gpg-passphrase: MAVEN_CENTRAL_GPG_PASSPHRASE - name: Deploy SNAPSHOT / Release - uses: camunda-community-hub/community-action-maven-release@v1 + uses: camunda-community-hub/community-action-maven-release@v1.0.9 with: release-version: ${{ github.event.release.tag_name }} release-profile: release