Skip to content

Commit

Permalink
separate signing from tarballing
Browse files Browse the repository at this point in the history
  • Loading branch information
James Bradbury committed Aug 1, 2024
1 parent 73d8370 commit 95d0015
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,10 @@ jobs:
pip install -r _deps/flucoma-docs-src/requirements.txt
ninja install
- name: Create tarball
- name: Copy binaries
run: |
ls -r
mkdir -p FluCoMa-CLI-Mac
cp ./flucoma-cli/release-packaging/FluidCorpusManipulation/bin/fluid-* FluCoMa-CLI-Mac/
tar -czf FluCoMa-CLI-Mac.tar.gz FluCoMa-CLI-Mac
- name: Sign binaries
uses: flucoma/actions/distribution@main
Expand All @@ -49,6 +47,11 @@ jobs:
cert: ${{ secrets.CERT }}
certpwd: ${{ secrets.CERTPWD }}
teamid: ${{ secrets.WWDRTEAMID }}
apppwd: ${{ secrets.APPSTORECONNECTPWD }}
appusr: ${{ secrets.APPSTORECONNECTUSERNAME }}

- name: make tarball
run: tar -czf FluCoMa-CLI-Mac.tar.gz FluCoMa-CLI-Mac

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 95d0015

Please sign in to comment.