Skip to content

Commit

Permalink
Fix package
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Oct 19, 2023
1 parent 26d1bd5 commit 32e2cba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
p12-file-base64: ${{ secrets.CERTIFICATEXC }}
p12-password: ${{ secrets.CERTIFICATEXC_PASS }}
- name: Build SDK
run: make build-package XCODE
run: make build-package
- name: Upload zip distribution
uses: actions/upload-artifact@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
set -o pipefail
set -e

ZIP=$(realpath "$1")

ZIP="$(cd "$(dirname "$1")" && pwd)/$(basename "$1")"

package() {
if [ -d "$1" ]
Expand Down

0 comments on commit 32e2cba

Please sign in to comment.