From 69c96777ff8e2ce5393bb092cc7936751d06891c Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Mon, 1 Jun 2026 08:26:14 -0700 Subject: [PATCH] Update release --- .github/workflows/release-please.yml | 64 +++------------------------- 1 file changed, 5 insertions(+), 59 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index c863b0f..139dec7 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,50 +1,13 @@ -name: Release Please +name: Build on: push: - branches: [main] # updates/opens the release PR when commits land on main - workflow_dispatch: - -permissions: - contents: write - pull-requests: write - id-token: write - -concurrency: - group: release-please - cancel-in-progress: true + branches: + - main jobs: - release-please: - name: Release Please - runs-on: ubuntu-latest - outputs: - release_created: ${{ steps.rp.outputs.release_created }} - steps: - - id: app-token - uses: actions/create-github-app-token@v2 - with: - app-id: ${{ secrets.GH_STOAT_RELEASE_APP_ID }} - private-key: ${{ secrets.GH_STOAT_RELEASE_APP_PRIVATE_KEY }} - - id: rp - uses: googleapis/release-please-action@v4 - with: - token: ${{ steps.app-token.outputs.token }} - config-file: release-please-config.json - - publish-release: - name: Publish App - needs: release-please - if: needs.release-please.outputs.release_created == 'true' - runs-on: ${{ matrix.os }} - - permissions: - contents: write - - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - + build: + runs-on: alpine-linux steps: - name: Checkout uses: actions/checkout@v4 @@ -69,20 +32,3 @@ jobs: - name: Publish run: | pnpm run publish - env: - PLATFORM: ${{ matrix.os }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Publish macOS x64 - if: matrix.os == 'macos-latest' - run: pnpm run publish --arch=x64 - env: - PLATFORM: ${{ matrix.os }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Publish Linux arm64 - if: matrix.os == 'ubuntu-latest' - run: pnpm run publish --arch=arm64 - env: - PLATFORM: ${{ matrix.os }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}