From a19287c967d70cef3c5eb5b76a321ea12833cf53 Mon Sep 17 00:00:00 2001 From: phernandez Date: Fri, 14 Feb 2025 17:09:22 -0600 Subject: [PATCH] add installer build step back in --- .github/workflows/release.yml | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9924464a..07674e13 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,29 +72,35 @@ jobs: - name: Create virtual env run: | uv venv + uv pip install -e "..[dev]" + + - name: Build macOS installer + run: | + make installer-mac + xattr -dr com.apple.quarantine "build/Basic Memory Installer.app" - name: Check library paths run: | otool -L installer/build/Basic\ Memory\ Installer.app/Contents/MacOS/Basic\ Memory\ Installer otool -l installer/build/Basic\ Memory\ Installer.app/Contents/MacOS/Basic\ Memory\ Installer - + - name: Inspect build run: | echo "Build structure:" ls -la installer/build/Basic\ Memory\ Installer.app/Contents/MacOS/ -# - name: Zip macOS installer -# run: | -# cd installer/build -# zip -ry "Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip" "Basic Memory Installer.app" -# -# - name: Upload macOS installer -# uses: softprops/action-gh-release@v1 -# with: -# files: installer/build/Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip -# tag_name: ${{ needs.release.outputs.tag }} -# token: ${{ secrets.GITHUB_TOKEN }} - + # - name: Zip macOS installer + # run: | + # cd installer/build + # zip -ry "Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip" "Basic Memory Installer.app" + # + # - name: Upload macOS installer + # uses: softprops/action-gh-release@v1 + # with: + # files: installer/build/Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip + # tag_name: ${{ needs.release.outputs.tag }} + # token: ${{ secrets.GITHUB_TOKEN }} + - name: Zip macOS installer run: | cd installer/build @@ -104,4 +110,4 @@ jobs: uses: softprops/action-gh-release@v1 with: files: installer/build/Basic-Memory-Installer.zip - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }}