Skip to content

Commit

Permalink
fix(ci): remove set-output usage
Browse files Browse the repository at this point in the history
  • Loading branch information
monosoul committed Dec 1, 2022
1 parent b164335 commit bb12024
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:

- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Publish plugin
uses: gradle/gradle-build-action@v2
with:
arguments: |
-Pversion=${{ steps.get_version.outputs.VERSION }}
-Pversion=${{ env.RELEASE_VERSION }}
-Pintellij.publish.token=${{ secrets.INTELLIJ_PUBLISH_TOKEN }}
build publishPlugin
Expand Down

0 comments on commit bb12024

Please sign in to comment.