Skip to content

Commit a08a9b3

Browse files
authored
Modify artifact upload path and error handling
Updated the artifact upload path to include multiple file types and changed the behavior when no files are found.
1 parent b4446ed commit a08a9b3

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,13 @@ jobs:
119119
uses: actions/upload-artifact@v4
120120
with:
121121
name: range-cloud-${{ matrix.os }}-${{ matrix.arch }}-packages
122-
path: ${{ matrix.pkg_glob }}
123-
if-no-files-found: warn
122+
path: |
123+
build-Release/*.deb
124+
build-Release/*.rpm
125+
build-Release/*.sh
126+
build-Release/*.run
127+
build-Release/*.zip
128+
build-Release/*.tar.gz
129+
build-Release/*.dmg
130+
build-Release/*.run
131+
if-no-files-found: error

0 commit comments

Comments
 (0)