Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/friendly-socks-agree.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"starlight-spell-checker": patch
---

Setups trusted publishing using OpenID Connect (OIDC) authentication — no code changes.
5 changes: 4 additions & 1 deletion .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
permissions:
contents: read

env:
NODE_VERSION: 24.10.0

jobs:
autofix:
runs-on: ubuntu-latest
Expand All @@ -18,7 +21,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 20.19.5
node-version: ${{ env.NODE_VERSION }}
cache: "pnpm"

- name: Install Dependencies
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ concurrency:
cancel-in-progress: true

env:
REGISTRY: docker.io
IMAGE_OWNER: trueberryless
IMAGE_NAME: starlight-spell-checker
NODE_VERSION: 20
NODE_VERSION: 24.10.0

jobs:
changes:
Expand Down Expand Up @@ -102,12 +100,12 @@ jobs:
needs: [changes, changesets, image-tag]
if: >
(
needs.changesets.outputs.hasChangesets == 'false' &&
needs.changesets.outputs.hasChangesets == 'false' &&
(
contains(github.event.head_commit.message, 'deploy') ||
contains(github.event.head_commit.message, 'deploy') ||
contains(github.event.head_commit.message, 'release')
)
) ||
) ||
github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
permissions:
Expand All @@ -131,7 +129,7 @@ jobs:

- run: |
cd packages/starlight-spell-checker
npm publish --provenance --access public
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down