Skip to content

Commit a487c5c

Browse files
authored
Merge pull request #13 from cicirello/fix-workflow
Replaced deprecated use of set-output in deployment workflow
2 parents 848924f + 396f745 commit a487c5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/maven-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- name: Get the release version
1919
id: get_version
20-
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
20+
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_OUTPUT
2121

2222
- name: Set up JDK 11 for deploy to OSSRH
2323
uses: actions/setup-java@v3

0 commit comments

Comments
 (0)