We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aac1de4 commit 863af76Copy full SHA for 863af76
.github/workflows/publish.yaml
@@ -2,18 +2,16 @@ name: Publish Package to NPM
2
on:
3
release:
4
types: [created]
5
- # Optionally enable manual trigger from GitHub Actions tab
6
- workflow_dispatch:
7
jobs:
8
build-and-publish:
9
runs-on: ubuntu-latest
10
steps:
11
- name: Checkout repository
12
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
13
- name: Setup Node.js
14
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
15
with:
16
- node-version: '16'
+ node-version: '20'
17
registry-url: 'https://registry.npmjs.org'
18
19
- name: Install dependencies
0 commit comments