Skip to content

Commit

Permalink
fix secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
ozcodes committed Nov 17, 2024
1 parent e46bdb2 commit a034d34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
run: just build-all
- name: Package
env:
APPLE_CODESIGN_IDENTITY: {{ secrets.APPLE_CODESIGN_IDENTITY }}
APPLE_CRED: {{ secrets.APPLE_CRED }}
APPLE_P12_BASE64: {{ secrets.APPLE_P12_BASE64 }}
APPLE_P12_PASSWORD: {{ secrets.APPLE_P12_PASSWORD }}
APPLE_TEAMID: {{ secrets.APPLE_TEAMID }}
APPLE_TEMPKEYCHAIN_PASSWORD: {{ secrets.APPLE_TEMPKEYCHAIN_PASSWORD }}
APPLE_CODESIGN_IDENTITY: ${{ secrets.APPLE_CODESIGN_IDENTITY }}
APPLE_CRED: ${{ secrets.APPLE_CRED }}
APPLE_P12_BASE64: ${{ secrets.APPLE_P12_BASE64 }}
APPLE_P12_PASSWORD: ${{ secrets.APPLE_P12_PASSWORD }}
APPLE_TEAMID: ${{ secrets.APPLE_TEAMID }}
APPLE_TEMPKEYCHAIN_PASSWORD: ${{ secrets.APPLE_TEMPKEYCHAIN_PASSWORD }}
run: just package
- uses: actions/upload-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ if [[ "${HOST_TRIPLE}" != "x86_64-pc-windows-msvc" ]] ; then
#cp -R rust/build/${HOST_TRIPLE}/llvm/lib/python* deploy/llvm/lib/
fi

# Sign macOS binaries
if [[ $HOST_TRIPLE == *apple-darwin* ]]; then
pwd; ls -l # TODO: remove this

Expand Down

0 comments on commit a034d34

Please sign in to comment.