From 7847a7798d52ff93810bca95e83a39efdff85606 Mon Sep 17 00:00:00 2001 From: Alexander Loren Date: Mon, 24 Aug 2026 13:30:27 -0700 Subject: [PATCH] Removed wildcard --- .gitea/workflows/bundle.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/bundle.yml b/.gitea/workflows/bundle.yml index b614d58..ea8a4ab 100644 --- a/.gitea/workflows/bundle.yml +++ b/.gitea/workflows/bundle.yml @@ -18,7 +18,7 @@ jobs: swift build -c release BIN_PATH=$(swift build -c release --show-bin-path) mkdir -p artifacts - cp "$BIN_PATH/*" artifacts/ + cp "$BIN_PATH" artifacts/ - name: Upload Artifact uses: actions/upload-artifact@v4 @@ -39,7 +39,7 @@ jobs: swift build -c release $binPath = swift build -c release --show-bin-path New-Item -ItemType Directory -Path artifacts -Force - Copy-Item -Path "$binPath\*" -Destination artifacts\ -Recurse + Copy-Item -Path "$binPath" -Destination artifacts\ -Recurse - name: Bundle DLLs uses: hylo-lang/swift-windows-dll-bundler@v1 @@ -67,7 +67,7 @@ jobs: swift build -c release BIN_PATH=$(swift build -c release --show-bin-path) mkdir -p artifacts - cp "$BIN_PATH/*" artifacts/ + cp "$BIN_PATH" artifacts/ - name: Upload Artifact uses: actions/upload-artifact@v4