Skip to content

Commit

Permalink
Webrepl updates (#200)
Browse files Browse the repository at this point in the history
* Tweaked docker-maven-plugin config

* Fix tagged version name
  • Loading branch information
ksclarke authored Oct 5, 2024
1 parent 91cb9c8 commit aa68e96
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:

- name: Set release version
shell: bash
run: TAG_NAME="${{ github.event.release.tag_name }}" && echo "RELEASE_VERSION=${TAG_NAME%-*}" >> $GITHUB_ENV
run: |
GITHUB_REF="${{ github.ref }}" &&
TAG_NAME="${GITHUB_REF#refs/tags/}" &&
echo "RELEASE_VERSION=${TAG_NAME#webrepl-}" >> $GITHUB_ENV
- name: Release with Maven
uses: samuelmeuli/action-maven-publish@201a45a3f311b2ee888f252ba9f4194257545709 # v1.4.0
Expand Down

0 comments on commit aa68e96

Please sign in to comment.