From a7acd34589075bcabe3f2e4c4c45ced93ae3b616 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Fri, 19 Dec 2025 17:23:45 +0900 Subject: [PATCH 1/2] chore: add ref --- ref/oh-my-opencode | 1 + 1 file changed, 1 insertion(+) create mode 160000 ref/oh-my-opencode diff --git a/ref/oh-my-opencode b/ref/oh-my-opencode new file mode 160000 index 0000000..c37d41e --- /dev/null +++ b/ref/oh-my-opencode @@ -0,0 +1 @@ +Subproject commit c37d41edb2f221dbda6a0a2254d782f1f6e3fbeb From 2c4db9e1f79b06a6ae9acebdfe96bd46595fd6bc Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Fri, 19 Dec 2025 21:29:51 +0900 Subject: [PATCH 2/2] fix(ci): use GitHub-hosted runners for npm publish workflow Replaced self-hosted runners with ubuntu-latest in the npm publish job because npm trusted publishers/provenance feature only supports GitHub-hosted runners. This ensures npm package publishing works correctly with the trusted publishers authentication method. --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 09ba616..3353f29 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -41,7 +41,7 @@ jobs: publish: needs: release-please if: ${{ needs.release-please.outputs.release_created == 'true' }} - runs-on: [self-hosted, linux, x64, ubuntu-2404, aws] + runs-on: ubuntu-latest permissions: contents: read id-token: write