Skip to content

Commit

Permalink
fix: safari build
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Dec 13, 2024
1 parent 67a01bf commit bc85ab7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/macos-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: safari build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: setup env
id: node-version
Expand All @@ -20,7 +20,7 @@ jobs:
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT

- name: Cache yarn modules
uses: actions/cache@v3
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -34,7 +34,7 @@ jobs:
mkdir release
docker run --rm --user "$(id -u):$(id -g)" -v `pwd`:/home:rw enkrypt-build-container /bin/bash -c "cd packages/extension && yarn build:all && yarn build:safari"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: safari-build-artifact
path: packages/extension/dist
Expand All @@ -51,10 +51,10 @@ jobs:
xcode-version: "latest-stable"

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Retrieve saved safari build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: safari-build-artifact
path: packages/extension/dist
Expand Down
1 change: 1 addition & 0 deletions macos/Enkrypt/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ PLATFORMS
universal-darwin-22
x86_64-darwin-20
x86_64-darwin-21
arm64-darwin-23

DEPENDENCIES
fastlane
Expand Down

0 comments on commit bc85ab7

Please sign in to comment.