From 936eb4e2ce797574889e2503aff2bd1a6ab74ea9 Mon Sep 17 00:00:00 2001 From: Nathan Courtney Date: Tue, 10 Sep 2024 15:47:41 -0400 Subject: [PATCH] need ssh --- .github/workflows/build.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 886489f..4420c64 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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: |- @@ -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: |