Skip to content

Commit 878dd35

Browse files
authored
fixes (#71)
1 parent 623d8eb commit 878dd35

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
git push -u origin release/$VERSION
5959
env:
6060
VERSION: ${{ steps.extract_version.outputs.version }}
61-
REPO: ${{ github.repository }}
61+
REPO: https://github.com/${{ github.repository }}
6262

6363
- name: Upload artifacts
6464
uses: actions/upload-artifact@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ playground.xcworkspace
3939

4040
# ignore distribution files
4141
dist/
42+
artifacts/
4243

4344
# ignore swift package manager files
4445
.swiftpm/

.scripts/package.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ if [ -f $package ]; then rm -f "$package"; fi
311311
# Move generated files into the repo directory
312312
mv "$scratch/$sources" "$sources"
313313
mv "$scratch/$package" "$package"
314-
mv "$scratch/$distribution" ../artifacts
314+
mkdir artifacts
315+
mv -v $scratch/$distribution/*.xcframework.zip artifacts/
315316

316317
echo "Done."

0 commit comments

Comments
 (0)