We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 045d228 commit 74425d8Copy full SHA for 74425d8
.github/workflows/build.yml
@@ -106,7 +106,7 @@ jobs:
106
- name: Set env variable
107
uses: FranzDiebold/github-env-vars-action@v2 #https://github.com/marketplace/actions/github-environment-variables-action
108
- name: Set CI_TAG
109
- run: if [["${GITHUB_REF_TYPE}" == "tag" ]]; then echo "CI_TAG=${CI_REF}" >> $GITHUB_ENV; fi
+ run: if [[ "${GITHUB_REF_TYPE}" == "tag" ]]; then echo "CI_TAG=${CI_REF_NAME}" >> ${GITHUB_ENV}; fi
110
- name: Upload archives
111
env:
112
PACKAGECLOUD_TOKEN: ${{secrets.PACKAGECLOUD_TOKEN}}
0 commit comments