We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e9f190 commit 6e6462cCopy full SHA for 6e6462c
.github/workflows/publish.yml
@@ -6,14 +6,17 @@ jobs:
6
id-token: write # < REQUIRED FOR OIDC
7
8
steps:
9
- - uses: actions/checkout
10
- - uses: actions/setup-node
+ - uses: actions/checkout@v5
+ 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
17
with:
18
node-version: "lts/*"
19
registry-url: "https://registry.npmjs.org"
-
- # OIDC requires npm v11.5.1 or later
- # Node.js v20 comes with v10.8, so we need to update it:
20
- run: yarn release-it --ci
21
env:
22
GITHUB_TOKEN: ${{ secrets.MIKE_HARDY_RELEASE_GITHUB_TOKEN }}
0 commit comments