Fixed borked build number

this was a problem before the recent clean-up; the only reason it just decided to show now is because 2000+25 is valid PHP code, so PHP saved our asses.
This commit is contained in:
Dylan K. Taylor 2021-11-26 23:36:19 +00:00
parent 32f619ac49
commit 7ace24caab
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -38,7 +38,7 @@ jobs:
- name: Calculate build number
id: build-number
run: |
BUILD_NUMBER=2000+$GITHUB_RUN_NUMBER #to stay above jenkins
BUILD_NUMBER=$((2000+$GITHUB_RUN_NUMBER)) #to stay above jenkins
echo "Build number: $BUILD_NUMBER"
echo ::set-output name=BUILD_NUMBER::$BUILD_NUMBER