We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71fb2ea commit fbf57bcCopy full SHA for fbf57bc
.github/workflows/release-please.yml
@@ -14,7 +14,24 @@ jobs:
14
release-please:
15
runs-on: ubuntu-latest
16
steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
+ - name: Setup Node
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version-file: ".nvmrc"
23
+ - name: Install Dependencies
24
+ run: npm ci
25
+ - name: Build Project
26
+ run: npm run build
27
+ - name: Commit ./lib/index.js
28
+ run: |
29
+ git config user.name github-actions
30
+ git config user.email [email protected]
31
+ git add ./lib/index.js
32
+ git commit -m "chore(release): Add build assets"
33
- uses: google-github-actions/release-please-action@v4
34
+ id: release
35
with:
36
token: ${{ secrets.GITHUB_TOKEN }}
37
release-type: node
0 commit comments