We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdcecaa commit cc42ea5Copy full SHA for cc42ea5
.github/workflows/release.yml
@@ -46,4 +46,18 @@ jobs:
46
with:
47
name: convertApi-cli
48
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
63
retention-days: 1 # Storing it for 1 day, not to exceed free plan.
0 commit comments