Skip to content

Commit 03a67b3

Browse files
committed
fix artifact creation and downloading
1 parent 064a5f1 commit 03a67b3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ jobs:
2727
path: ./artifacts
2828

2929
- name: Display structure of downloaded files
30-
run: ls -R
30+
run: ls -lahR
3131
working-directory: ./artifacts
3232

3333
- name: Create Release
3434
uses: softprops/action-gh-release@v1
3535
if: startsWith(github.ref, 'refs/tags/v')
3636
with:
37-
files: ./artifacts/*.zip
37+
files: ./artifacts/*/codam-web-greeter-*.zip
38+
fail_on_unmatched_files: true
3839
tag_name: ${{ github.ref }}
3940
name: codam-web-greeter ${{ github.ref_name }}
4041
generate_release_notes: true

.github/workflows/webpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ jobs:
5454
uses: actions/upload-artifact@v4
5555
with:
5656
name: relzip-codam-web-greeter-${{ matrix.theme }}-${{ matrix.boxed }}
57-
path: codam-web-greeter.zip
57+
path: codam-web-greeter-${{ matrix.theme }}-${{ matrix.boxed }}.zip
5858
retention-days: 1

0 commit comments

Comments
 (0)