Skip to content

Commit ea657dd

Browse files
committed
ci: compress released payloads using zip
1 parent 884e384 commit ea657dd

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
uses: actions/checkout@v3
4141

4242
- name: Build Payload
43-
run: make clean all
43+
run: |
44+
make clean all
45+
zip -r Payload.zip elfldr.elf
4446
4547
- name: Upload Payload
4648
uses: actions/upload-artifact@v4
@@ -68,4 +70,4 @@ jobs:
6870
with:
6971
tag_name: ${{ github.ref_name }}
7072
prerelease: true
71-
files: "*.elf"
73+
files: Payload.zip

0 commit comments

Comments
 (0)