Skip to content

Commit da106e0

Browse files
Once again trying to fix artifact.
1 parent e71541c commit da106e0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
run: dotnet publish ConvertApi.Cli/ConvertApi.Cli.csproj -c Release -r win-x64 --self-contained true /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
3636

3737
# Create a zip package
38-
- name: Create ZIP package
39-
run: |
40-
mkdir -p ${{ env.OUTPUT_DIR }}
41-
zip -j ${{ env.OUTPUT_DIR }}/convertApi-cli.zip ${{ env.PUBLISH_DIR }}/*
38+
# - name: Create ZIP package
39+
# run: |
40+
# mkdir -p ${{ env.OUTPUT_DIR }}
41+
# zip -j ${{ env.OUTPUT_DIR }}/convertApi-cli.zip ${{ env.PUBLISH_DIR }}/*
4242

4343
# Upload the artifact
4444
- name: Upload artifact
4545
uses: actions/upload-artifact@v3
4646
with:
4747
name: convertApi-cli
48-
path: ${{ env.OUTPUT_DIR }}/convertApi-cli.zip
48+
path: ${{ env.PUBLISH_DIR }}
4949
retention-days: 1

0 commit comments

Comments
 (0)