Skip to content

Commit

Permalink
Append SHA to each build workflow's artifact upload step (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
KTrain5169 authored Oct 26, 2024
1 parent 156c558 commit 15de68a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Checkout ref
uses: actions/checkout@v4
with:
fetch-depth: 2
ref: ${{ github.sha }}

- name: Setup Python
uses: actions/setup-python@v5
Expand All @@ -44,11 +44,11 @@ jobs:
- name: Upload Builds
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }} build
name: ${{ matrix.os }} build at ${{ github.sha }}
path: build/

- name: Upload Dists
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }} dist
name: ${{ matrix.os }} dist at ${{ github.sha }}
path: dist/

0 comments on commit 15de68a

Please sign in to comment.