Skip to content

Commit cc42ea5

Browse files
Got back zipping.
1 parent cdcecaa commit cc42ea5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,18 @@ jobs:
4646
with:
4747
name: convertApi-cli
4848
path: ConvertApi.Cli/bin/Release/net8.0/win-x64/publish/convertApi-cli.zip
49+
retention-days: 1 # Storing it for 1 day, not to exceed free plan.
50+
51+
# Create a zip package
52+
- name: Create ZIP package
53+
run: |
54+
mkdir -p output
55+
zip -j output/convertApi-cli.zip ConvertApi.Cli/bin/Release/net8.0/win-x64/publish/*
56+
57+
# Upload the artifact
58+
- name: Upload artifact
59+
uses: actions/upload-artifact@v3
60+
with:
61+
name: convertApi-cli
62+
path: output/convertApi-cli.zip
4963
retention-days: 1 # Storing it for 1 day, not to exceed free plan.

0 commit comments

Comments
 (0)