This commit is contained in:
Cody Robibero 2024-03-25 20:51:40 -06:00
parent 58523f96de
commit 0e02cf1f72

View File

@ -45,7 +45,7 @@ jobs:
- name: Generate version number using date and run number
id: version-creator
run: |
pluginVersion=`grep 'version:' build.yaml | cut -d ' ' -f2 | tr -d '"'`
pluginVersion=`grep 'version:' build.yaml | awk '{ print $2 }' | tr -d '"'`
buildDay=`date +%Y%m`
runNum=$GITHUB_RUN_NUMBER
ver="${pluginVersion}.${buildDay}.${runNum}.0"