From 30df67bad286680bb6cfd308db31482b36b10dc2 Mon Sep 17 00:00:00 2001 From: Tom Hensel <80815+gretel@users.noreply.github.com> Date: Wed, 22 Apr 2020 15:08:12 +0200 Subject: [PATCH] fix artifacts filename not containing build number (#188) * Revert "thrust lionearization" This reverts commit 627ad35793eda9476f57d1a850004cdec3b67f03. * fix artifacts filename not containing build number --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41e6ec9579..7b4b449b53 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,10 +20,6 @@ jobs: with: fetch-depth: 0 - - name: Get build number - id: get_buildno - run: echo ::set-env name=BUILD_NUMBER::${{ github.run_number }} - - name: Get pull request number id: get_pullno run: echo ::set-env name=PULL_NUMBER::$(echo "$GITHUB_REF" | awk -F / '{print $3}') @@ -62,7 +58,7 @@ jobs: - name: Store Artifacts uses: actions/upload-artifact@v2-preview with: - name: EmuFlight-${{ steps.get_version.outputs.VERSION }}-${{ steps.get_buildno.outputs.BUILD_NUMBER }} + name: EmuFlight-${{ steps.get_version.outputs.VERSION }}-${{ github.run_number }} path: obj/*.hex continue-on-error: true