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.
2 parents 871c450 + eb2871a commit 740ff40Copy full SHA for 740ff40
1 file changed
.github/workflows/dotnet_selfcontained.yml
@@ -43,18 +43,17 @@ jobs:
43
run: |
44
TARGET_DIR="./artifacts/binaries/${{ matrix.os }}"
45
ARCHIVE_DIR="./artifacts/github-release-archives"
46
- OUTPUT_BASE="${ARCHIVE_DIR}/busly-cli-${{ github.event.release.tag_name }}-${{ matrix.os }}"
+ OUTPUT_ARCHIVE="../../github-release-archives/busly-cli-${{ github.event.release.tag_name }}-${{ matrix.os }}"
47
48
# Ensure the output directory exists
49
mkdir -p "$ARCHIVE_DIR"
50
51
- # Change to the target directory so archive contains only files
52
cd "$TARGET_DIR"
53
54
if [[ "${{ matrix.os }}" == "win-x64" ]]; then
55
- zip -r "$OUTPUT_BASE.zip" .
+ zip -r "$OUTPUT_ARCHIVE.zip" .
56
else
57
- tar -czf "$OUTPUT_BASE.tar.gz" .
+ tar -czf "$OUTPUT_ARCHIVE.tar.gz" .
58
fi
59
60
- name: Upload Release Asset
0 commit comments