|
|
@@ -60,6 +60,8 @@ jobs:
|
|
|
needs: version
|
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
|
if: github.repository == 'anomalyco/opencode'
|
|
|
+ container:
|
|
|
+ image: ghcr.io/anomalyco/build/bun-node:24.04
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
with:
|
|
|
@@ -84,7 +86,7 @@ jobs:
|
|
|
outputs:
|
|
|
version: ${{ needs.version.outputs.version }}
|
|
|
|
|
|
- build-tauri:
|
|
|
+ build-tauri-linux:
|
|
|
needs:
|
|
|
- build-cli
|
|
|
- version
|
|
|
@@ -93,17 +95,13 @@ jobs:
|
|
|
fail-fast: false
|
|
|
matrix:
|
|
|
settings:
|
|
|
- - host: macos-latest
|
|
|
- target: x86_64-apple-darwin
|
|
|
- - host: macos-latest
|
|
|
- target: aarch64-apple-darwin
|
|
|
- - host: blacksmith-4vcpu-windows-2025
|
|
|
- target: x86_64-pc-windows-msvc
|
|
|
- host: blacksmith-4vcpu-ubuntu-2404
|
|
|
target: x86_64-unknown-linux-gnu
|
|
|
- host: blacksmith-4vcpu-ubuntu-2404-arm
|
|
|
target: aarch64-unknown-linux-gnu
|
|
|
runs-on: ${{ matrix.settings.host }}
|
|
|
+ container:
|
|
|
+ image: ghcr.io/anomalyco/build/tauri-linux:24.04
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
with:
|
|
|
@@ -131,21 +129,6 @@ jobs:
|
|
|
|
|
|
- uses: ./.github/actions/setup-bun
|
|
|
|
|
|
- - name: Cache apt packages
|
|
|
- if: contains(matrix.settings.host, 'ubuntu')
|
|
|
- uses: actions/cache@v4
|
|
|
- with:
|
|
|
- path: /var/cache/apt/archives
|
|
|
- key: ${{ runner.os }}-${{ matrix.settings.target }}-apt-${{ hashFiles('.github/workflows/publish.yml') }}
|
|
|
- restore-keys: |
|
|
|
- ${{ runner.os }}-${{ matrix.settings.target }}-apt-
|
|
|
-
|
|
|
- - name: install dependencies (ubuntu only)
|
|
|
- if: contains(matrix.settings.host, 'ubuntu')
|
|
|
- run: |
|
|
|
- sudo apt-get update
|
|
|
- sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
|
|
-
|
|
|
- name: install Rust stable
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
with:
|
|
|
@@ -169,7 +152,6 @@ jobs:
|
|
|
|
|
|
# Fixes AppImage build issues, can be removed when https://github.com/tauri-apps/tauri/pull/12491 is released
|
|
|
- name: Install tauri-cli from portable appimage branch
|
|
|
- if: contains(matrix.settings.host, 'ubuntu')
|
|
|
run: |
|
|
|
cargo install tauri-cli --git https://github.com/tauri-apps/tauri --branch feat/truly-portable-appimage --force
|
|
|
echo "Installed tauri-cli version:"
|
|
|
@@ -200,11 +182,101 @@ jobs:
|
|
|
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
|
|
|
APPLE_API_KEY_PATH: ${{ runner.temp }}/apple-api-key.p8
|
|
|
|
|
|
+ build-tauri:
|
|
|
+ needs:
|
|
|
+ - build-cli
|
|
|
+ - version
|
|
|
+ continue-on-error: false
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ settings:
|
|
|
+ - host: macos-latest
|
|
|
+ target: x86_64-apple-darwin
|
|
|
+ - host: macos-latest
|
|
|
+ target: aarch64-apple-darwin
|
|
|
+ - host: blacksmith-4vcpu-windows-2025
|
|
|
+ target: x86_64-pc-windows-msvc
|
|
|
+ runs-on: ${{ matrix.settings.host }}
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v3
|
|
|
+ with:
|
|
|
+ fetch-tags: true
|
|
|
+
|
|
|
+ - uses: apple-actions/import-codesign-certs@v2
|
|
|
+ if: ${{ runner.os == 'macOS' }}
|
|
|
+ with:
|
|
|
+ keychain: build
|
|
|
+ p12-file-base64: ${{ secrets.APPLE_CERTIFICATE }}
|
|
|
+ p12-password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
|
|
|
+
|
|
|
+ - name: Verify Certificate
|
|
|
+ if: ${{ runner.os == 'macOS' }}
|
|
|
+ run: |
|
|
|
+ CERT_INFO=$(security find-identity -v -p codesigning build.keychain | grep "Developer ID Application")
|
|
|
+ CERT_ID=$(echo "$CERT_INFO" | awk -F'"' '{print $2}')
|
|
|
+ echo "CERT_ID=$CERT_ID" >> $GITHUB_ENV
|
|
|
+ echo "Certificate imported."
|
|
|
+
|
|
|
+ - name: Setup Apple API Key
|
|
|
+ if: ${{ runner.os == 'macOS' }}
|
|
|
+ run: |
|
|
|
+ echo "${{ secrets.APPLE_API_KEY_PATH }}" > $RUNNER_TEMP/apple-api-key.p8
|
|
|
+
|
|
|
+ - uses: ./.github/actions/setup-bun
|
|
|
+
|
|
|
+ - name: install Rust stable
|
|
|
+ uses: dtolnay/rust-toolchain@stable
|
|
|
+ with:
|
|
|
+ targets: ${{ matrix.settings.target }}
|
|
|
+
|
|
|
+ - uses: Swatinem/rust-cache@v2
|
|
|
+ with:
|
|
|
+ workspaces: packages/desktop/src-tauri
|
|
|
+ shared-key: ${{ matrix.settings.target }}
|
|
|
+
|
|
|
+ - name: Prepare
|
|
|
+ run: |
|
|
|
+ cd packages/desktop
|
|
|
+ bun ./scripts/prepare.ts
|
|
|
+ env:
|
|
|
+ OPENCODE_VERSION: ${{ needs.version.outputs.version }}
|
|
|
+ GITHUB_TOKEN: ${{ steps.committer.outputs.token }}
|
|
|
+ RUST_TARGET: ${{ matrix.settings.target }}
|
|
|
+ GH_TOKEN: ${{ github.token }}
|
|
|
+ GITHUB_RUN_ID: ${{ github.run_id }}
|
|
|
+
|
|
|
+ - name: Build and upload artifacts
|
|
|
+ uses: tauri-apps/tauri-action@390cbe447412ced1303d35abe75287949e43437a
|
|
|
+ timeout-minutes: 60
|
|
|
+ with:
|
|
|
+ projectPath: packages/desktop
|
|
|
+ uploadWorkflowArtifacts: true
|
|
|
+ tauriScript: ${{ (contains(matrix.settings.host, 'ubuntu') && 'cargo tauri') || '' }}
|
|
|
+ args: --target ${{ matrix.settings.target }} --config ./src-tauri/tauri.prod.conf.json --verbose
|
|
|
+ updaterJsonPreferNsis: true
|
|
|
+ releaseId: ${{ needs.version.outputs.release }}
|
|
|
+ tagName: ${{ needs.version.outputs.tag }}
|
|
|
+ releaseDraft: true
|
|
|
+ releaseAssetNamePattern: opencode-desktop-[platform]-[arch][ext]
|
|
|
+ env:
|
|
|
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
+ TAURI_BUNDLER_NEW_APPIMAGE_FORMAT: true
|
|
|
+ TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
|
|
+ TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
|
|
|
+ APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
|
|
|
+ APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
|
|
|
+ APPLE_SIGNING_IDENTITY: ${{ env.CERT_ID }}
|
|
|
+ APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
|
|
|
+ APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
|
|
|
+ APPLE_API_KEY_PATH: ${{ runner.temp }}/apple-api-key.p8
|
|
|
+
|
|
|
publish:
|
|
|
needs:
|
|
|
- version
|
|
|
- build-cli
|
|
|
- build-tauri
|
|
|
+ - build-tauri-linux
|
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|