Skip to content

Commit

Permalink
Replace deprecated gh action synthax
Browse files Browse the repository at this point in the history
  • Loading branch information
bchapuis committed Mar 20, 2024
1 parent d49ce4b commit 71a9969
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
- name: Extract variables
id: variables
run: |
echo ::set-output name=git_tag::${GITHUB_REF#refs/tags/}
echo ::set-output name=git_version::${GITHUB_REF#refs/tags/v}
echo ::set-output name=mvn_version::$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
echo "git_tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
echo "git_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
echo "mvn_version=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)" >> $GITHUB_OUTPUT
- name: Build project
run: mvn install -B
Expand Down

0 comments on commit 71a9969

Please sign in to comment.