File tree 2 files changed +21
-6
lines changed
2 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 36
36
npm publish --tag=insider --access=public libraries/ui-library-angular/dist/ui-library-angular/
37
37
env :
38
38
NODE_AUTH_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
39
-
40
- - name : ' Deploy Documentation'
41
- uses : JamesIves/github-pages-deploy-action@v4
42
- with :
43
- folder : docs/.vitepress/dist
44
- target-folder : docs
Original file line number Diff line number Diff line change
1
+ name : Display Variables
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ version :
7
+ description : ' The version to release. Format vx.x.x(-[rc|beta].x)'
8
+ required : true
9
+ type : string
10
+ push :
11
+
12
+ jobs :
13
+ display-variables :
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - name : ' Display variables'
18
+ run : |
19
+ echo "github.ref_name: ${{ github.ref_name }}"
20
+ echo "github.ref: ${{ github.ref }}"
21
+ echo "rev-parse: $(git rev-parse --abbrev-ref HEAD)"
You can’t perform that action at this time.
0 commit comments