Skip to content

Commit 28155bc

Browse files
fix: use ubuntu-latest for npm publish (OIDC requires GitHub-hosted runners) (#24)
### TL;DR Updated the runner for the npm publish workflow from a custom runner to the standard GitHub-hosted runner. ### What changed? Changed the `runs-on` parameter in the npm-publish.yml workflow from `blacksmith-4vcpu-ubuntu-2404` to `ubuntu-latest`. ### How to test? Trigger the npm publish workflow and verify that it runs successfully on the standard GitHub-hosted runner. ### Why make this change? Testing to see if we must use Github's runners for automated trusted publishing to npm.
1 parent 7972c50 commit 28155bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
publish:
1414
name: Publish to npm
15-
runs-on: blacksmith-4vcpu-ubuntu-2404
15+
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v6

0 commit comments

Comments
 (0)