Skip to content

Commit

Permalink
Use sha instead of git describe in test build names
Browse files Browse the repository at this point in the history
Fixes #78
  • Loading branch information
SkoggsTrollet committed Jul 23, 2021
1 parent 4034760 commit 74ec33c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Upload build
uses: actions/upload-artifact@v2
with:
name: NeoMori_${{ env.GIT_DESCRIBE }}_${{ matrix.platform }}
name: NeoMori_${{ github.sha }}_${{ matrix.platform }}
path: ${{ github.workspace }}/build/*

- name: Create override.cfg
Expand All @@ -57,5 +57,5 @@ jobs:
if: ${{ env.GIT_DESCRIBE != '' }}
uses: actions/upload-artifact@v2
with:
name: NeoMori_${{ env.GIT_DESCRIBE }}_${{ matrix.platform }}
name: NeoMori_${{ github.sha }}_${{ matrix.platform }}
path: ${{ github.workspace }}/override.cfg
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
workflow_conclusion: success
commit: ${{ github.sha }}
event: push
name: ${{ matrix.platform }}
name: NeoMori_${{ github.sha }}_${{ matrix.platform }}
path: NeoMori

- name: Update global/version in override.cfg
Expand Down

0 comments on commit 74ec33c

Please sign in to comment.