Skip to content

Commit 6e6462c

Browse files
committed
fix: correct versions for publish action, use Invertase OSS bot actor
1 parent 2e9f190 commit 6e6462c

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ jobs:
66
id-token: write # < REQUIRED FOR OIDC
77

88
steps:
9-
- uses: actions/checkout
10-
- uses: actions/setup-node
9+
- uses: actions/checkout@v5
10+
with:
11+
fetch-depth: 0
12+
- name: git config
13+
run: |
14+
git config --global user.name 'Invertase Publisher'
15+
git config --global user.email 'oss@invertase.io'
16+
- uses: actions/setup-node@v6
1117
with:
1218
node-version: "lts/*"
1319
registry-url: "https://registry.npmjs.org"
14-
15-
# OIDC requires npm v11.5.1 or later
16-
# Node.js v20 comes with v10.8, so we need to update it:
1720
- run: yarn release-it --ci
1821
env:
1922
GITHUB_TOKEN: ${{ secrets.MIKE_HARDY_RELEASE_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)