Skip to content

Commit d48c03a

Browse files
committed
Artifacts.zip
1 parent 322c619 commit d48c03a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,12 @@ jobs:
167167
with:
168168
path: ./artifacts
169169

170+
- name: Package artifacts
171+
shell: bash
172+
if: runner.os == 'Linux' && runner.arch == 'x64'
173+
run: |
174+
zip -r artifacts.zip ./artifacts
175+
170176
- name: Create or Update Release
171177
id: create_release
172178
uses: softprops/action-gh-release@v1
@@ -176,6 +182,6 @@ jobs:
176182
draft: false
177183
prerelease: false
178184
overwrite: true
179-
files: ./artifacts/**
185+
files: Artifacts.zip
180186
env:
181187
GITHUB_TOKEN: ${{ secrets.REL_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)