Skip to content

Commit

Permalink
need ssh
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-courtney-pieces committed Sep 10, 2024
1 parent d556a90 commit 936eb4e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ jobs:
run: echo "STAGING_VERSION=$(/bin/bash staging_versioning.sh)" >> $GITHUB_OUTPUT
if: inputs.deploy == false

### Install SSH
- uses: shimataro/ssh-key-action@v2
with:
key: "${{ secrets.ssh_private_key }}"
name: id_rsa
known_hosts: "github.com"
if_key_exists: fail

### Setting up our fastlane certificates
- name: Setup Certificates
run: |-
Expand Down Expand Up @@ -92,14 +100,6 @@ jobs:
run: |
poetry run pyinstaller -c --onefile src/pieces/app.py --hidden-import=pydantic_core --name=pieces --codesign-identity="Developer ID Application: Mesh Intelligent Technologies, Inc. (287L9TU9JL)" --target-arch=universal2
### Install SSH
- uses: shimataro/ssh-key-action@v2
with:
key: "${{ secrets.ssh_private_key }}"
name: id_rsa
known_hosts: "github.com"
if_key_exists: fail

# ### Codesign Binary Macos
# - name: Codesign Binary Macos
# run: |
Expand Down

0 comments on commit 936eb4e

Please sign in to comment.