Skip to content

Commit

Permalink
fix working-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
0xh3rman committed Jul 3, 2024
1 parent d1e816c commit 518c8e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-stone-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ env:
jobs:
upload_ios_framework:
runs-on: macos-latest
defaults:
run:
working-directory: gemstone
steps:
- name: Set version tag
run: |
Expand Down Expand Up @@ -56,14 +53,17 @@ jobs:
run: |
make prepare-apple
make apple BUILD_MODE=${{ env.BUILD_MODE }} IPHONEOS_DEPLOYMENT_TARGET=${{ env.IPHONEOS_DEPLOYMENT_TARGET }}
working-directory: gemstone

- name: Zip iOS framework
run: |
cd target/spm
tar -cjvf Gemstone-spm.tar.bz2 Package.swift Sources
working-directory: gemstone

- name: Upload to release
run: |
gh release upload ${{ env.VER_NAME }} target/spm/Gemstone-spm.tar.bz2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: gemstone

0 comments on commit 518c8e2

Please sign in to comment.