File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed
Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change 1010 description : ' Minor'
1111 type : boolean
1212 default : false
13+
14+ permissions :
15+ id-token : write # Required for OIDC
16+ contents : read
17+
1318jobs :
1419 publish_job :
1520 runs-on : ubuntu-latest
2227 run : |
2328 git config --local user.email 'hello@rive.app'
2429 git config --local user.name ${{ github.actor }}
25- - name : Authenticate with registry
26- run : npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
27- - uses : actions/setup-node@v2
30+ - uses : actions/setup-node@v4
2831 with :
29- node-version : ' 16.x '
32+ node-version : ' 24 '
3033 registry-url : ' https://registry.npmjs.org'
3134 - name : Install Modules
3235 run : npm install
3942 - if : ${{ inputs.major == true }}
4043 name : Major Release - Bump version number, update changelog, push and tag
4144 run : npm run release:major
42- env :
43- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
4445 - if : ${{inputs.major == false && inputs.minor == true}}
4546 name : Minor release - Bump version number, update changelog, push and tag
4647 run : npm run release:minor
47- env :
48- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
4948 - if : ${{inputs.major == false && inputs.minor == false}}
5049 name : Patch release - Bump version number, update changelog, push and tag
5150 run : npm run release:patch
52- env :
53- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments