Replace incorrect variable in artifact name

I was meaning to have the CI_COMMIT_SHORT_SHA referenced 
so we can identify a users build based on last commit (help support).
This commit is contained in:
Iain Powrie 2021-11-22 04:18:18 +00:00
parent cac4671c51
commit c6ddfc0dbc

View File

@ -112,7 +112,7 @@ win-dev-build:
--hidden-import cryptography --hidden-import cryptography
--hidden-import cffi --hidden-import cffi
artifacts: artifacts:
name: "crafty-${CI_RUNNER_TAGS}-${CI_COMMIT_BRANCH}_${CI_COMMIT_REF_SLUG}" name: "crafty-${CI_RUNNER_TAGS}-${CI_COMMIT_BRANCH}_${CI_COMMIT_SHORT_SHA}"
paths: paths:
- app\ - app\
- .\crafty_commander.exe - .\crafty_commander.exe
@ -147,7 +147,7 @@ win-prod-build:
--hidden-import cryptography --hidden-import cryptography
--hidden-import cffi --hidden-import cffi
artifacts: artifacts:
name: "crafty-${CI_RUNNER_TAGS}-${CI_COMMIT_BRANCH}_${CI_COMMIT_REF_SLUG}" name: "crafty-${CI_RUNNER_TAGS}-${CI_COMMIT_BRANCH}_${CI_COMMIT_SHORT_SHA}"
paths: paths:
- app\ - app\
- .\crafty_commander.exe - .\crafty_commander.exe