File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ jobs:
101101 - name : Check if plugin version matches tag
102102 run : |
103103 pluginversion=`jq -r '.version' plugin.json`
104- if [ "v$pluginversion" != "${{ env.GITHUB_REF_NAME }}" ]; then
105- echo "Plugin version from plugin.json 'v$pluginversion' doesn't match with tag version '${{ env.GITHUB_REF_NAME }}'"
104+ if [ "v$pluginversion" != "${{ CI_REF_NAME }}" ]; then
105+ echo "Plugin version from plugin.json 'v$pluginversion' doesn't match with tag version '${{ CI_REF_NAME }}'"
106106 exit 1
107107 fi
108108 - name : Create Release
@@ -113,7 +113,7 @@ jobs:
113113 tag_name : ${{ github.ref }}
114114 release_name : Release ${{ github.ref }}
115115 body : |
116- ${{ env.GITHUB_REPOSITORY_NAME }} VCV Rack Plugin ${{ env.GITHUB_REF_NAME }}
116+ ${{ CI_REPOSITORY_NAME }} VCV Rack Plugin ${{ CI_REF_NAME }}
117117 draft : false
118118 prerelease : false
119119 - uses : actions/download-artifact@v2
You can’t perform that action at this time.
0 commit comments