Skip to content

Commit

Permalink
fix artifacts filename not containing build number (#188)
Browse files Browse the repository at this point in the history
* Revert "thrust lionearization"

This reverts commit 627ad35.

* fix artifacts filename not containing build number
  • Loading branch information
gretel authored Apr 22, 2020
1 parent d963f46 commit 30df67b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}')
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 30df67b

Please sign in to comment.