summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2026-01-30 00:15:21 -0500
committerDax Raad <[email protected]>2026-01-30 00:15:21 -0500
commit36041c000078c9e4e7ccc38707785e0eb757860b (patch)
tree695804ab2eb162eb44602f35b747f5f795a06110 /.github
parentb5e5d4c92f8a6468831c8ab1101048f7d1ad3c2c (diff)
downloadopencode-36041c000078c9e4e7ccc38707785e0eb757860b.tar.gz
opencode-36041c000078c9e4e7ccc38707785e0eb757860b.zip
ci
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/generate.yml8
-rw-r--r--.github/workflows/publish.yml118
2 files changed, 99 insertions, 27 deletions
diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml
index cae20a244..3bb8f364d 100644
--- a/.github/workflows/generate.yml
+++ b/.github/workflows/generate.yml
@@ -16,10 +16,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- with:
- token: ${{ secrets.GITHUB_TOKEN }}
- repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
- ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
- name: Setup Bun
uses: ./.github/actions/setup-bun
@@ -36,6 +32,10 @@ jobs:
- name: Commit and push
run: |
+ if [ -z "$(git status --porcelain)" ]; then
+ echo "No changes to commit"
+ exit 0
+ fi
git add -A
git commit -m "chore: generate" --allow-empty
git push origin HEAD:${{ github.ref_name }} --no-verify
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index dd0487c40..17942a59d 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -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