Skip to content

Commit 0ec13d1

Browse files
committed
Don't include ref in artifact name, / causes problems
1 parent 4d735c4 commit 0ec13d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ jobs:
188188
- name: Upload artifacts
189189
uses: actions/upload-artifact@v4
190190
with:
191-
name: ${{ matrix.name }}-${{ github.ref_name }}-${{ github.run_number }}
191+
name: ${{ matrix.name }}-${{ github.run_number }}
192192
path: ${{ github.workspace }}/binaries/*
193193

194194
- name: Upload appx
195195
if: ${{ matrix.os == 'windows-latest' && github.event_name != 'pull_request' }}
196196
uses: actions/upload-artifact@v4
197197
with:
198-
name: ${{ matrix.name }}-appx-${{ github.ref_name }}-${{ github.run_number }}
198+
name: ${{ matrix.name }}-appx-${{ github.run_number }}
199199
path: ${{ github.workspace }}/appx/*

0 commit comments

Comments
 (0)