File tree 3 files changed +11
-45
lines changed
3 files changed +11
-45
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # This workflow publishes a package to GitHub Packages
2
- # whenever a release is published, and it's tag starts with "1"
3
- # The pipeline is aimed on "v1" branch
4
- # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
5
-
6
- name : Node.js Package v1
1
+ name : Publish Package
7
2
8
3
on :
9
4
release :
10
5
types : [published]
11
- tags :
12
- - ' 1*'
13
6
14
7
jobs :
15
8
publish-npm :
16
9
runs-on : ubuntu-latest
17
10
steps :
18
11
- uses : actions/checkout@v4
19
- with :
20
- ref : ' v1'
21
12
- uses : actions/setup-node@v4
22
13
with :
23
- node-version : 20
14
+ node-version : 22
24
15
registry-url : https://registry.npmjs.org/
25
16
- run : npm ci
26
17
- run : npm run build
27
18
- run : npm publish --access public
28
19
env :
29
- NODE_AUTH_TOKEN : ${{secrets.npm_token}}
20
+ NODE_AUTH_TOKEN : ${{secrets.npm_token}}
Original file line number Diff line number Diff line change @@ -4,10 +4,14 @@ All notable changes to the "@qavajs/steps-api" will be documented in this file.
4
4
5
5
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
6
6
7
- :rocket : - new feature
8
- :beetle : - bugfix
9
- :x : - deprecation
10
- :pencil : - chore
7
+ :rocket : - new feature
8
+ :beetle : - bugfix
9
+ :x : - deprecation/removal
10
+ :pencil : - chore
11
+ :microscope : - experimental
12
+
13
+ ## [ unreleased]
14
+ - :beetle : fixed publishing workflow
11
15
12
16
## [ 2.0.0]
13
17
- :rocket : migrated on @qavajs/core v2
You can’t perform that action at this time.
0 commit comments