We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b164335 commit bb12024Copy full SHA for bb12024
.github/workflows/build-on-release.yaml
@@ -19,13 +19,13 @@ jobs:
19
20
- name: Get the version
21
id: get_version
22
- run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
+ run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
23
24
- name: Publish plugin
25
uses: gradle/gradle-build-action@v2
26
with:
27
arguments: |
28
- -Pversion=${{ steps.get_version.outputs.VERSION }}
+ -Pversion=${{ env.RELEASE_VERSION }}
29
-Pintellij.publish.token=${{ secrets.INTELLIJ_PUBLISH_TOKEN }}
30
build publishPlugin
31
0 commit comments