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 b287cb8 commit 27ab487Copy full SHA for 27ab487
.github/workflows/release.yml
@@ -14,18 +14,14 @@ jobs:
14
name: release
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v3
18
- - uses: actions/setup-node@v3
19
- with:
20
- cache: npm
21
- node-version: lts/*
22
- - run: npm ci
23
- - run: npm run build
24
- - uses: ./ # Uses the action in the root directory
+ - uses: actions/create-github-app-token@v1
25
id: app-token
26
with:
27
app_id: ${{ vars.RELEASER_APP_ID }}
28
private_key: ${{ secrets.RELEASER_APP_PRIVATE_KEY }}
+ - uses: actions/checkout@v3
+ with:
+ token: ${{ steps.app-token.outputs.token }}
29
- run: npm install --no-save @semantic-release/git semantic-release-plugin-github-breaking-version-tag
30
- run: npx semantic-release
31
env:
0 commit comments