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