From 7ace24caaba029f128a6eb5d1d78742c3e103ec6 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 26 Nov 2021 23:36:19 +0000 Subject: [PATCH] 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. --- .github/workflows/draft-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index b70a2757f..1c8f3eb57 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -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