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 9e5031d commit 5593b08Copy full SHA for 5593b08
1 file changed
.github/workflows/dotnet_selfcontained.yml
@@ -42,7 +42,11 @@ jobs:
42
- name: Create Archive
43
run: |
44
TARGET_DIR="./artifacts/binaries/${{ matrix.os }}"
45
- OUTPUT_BASE="./artifacts/github-release-archives/busly-cli-${{ github.event.release.tag_name }}-${{ matrix.os }}"
+ ARCHIVE_DIR="./artifacts/github-release-archives"
46
+ OUTPUT_BASE="${ARCHIVE_DIR}/busly-cli-${{ github.event.release.tag_name }}-${{ matrix.os }}"
47
+
48
+ # Ensure the output directory exists
49
+ mkdir -p "$(dirname "$ARCHIVE_DIR")"
50
51
if [[ "${{ matrix.os }}" == "win-x64" ]]; then
52
zip -r "${OUTPUT_BASE}.zip" . -C "$TARGET_DIR"
0 commit comments