File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : on-gh-release
2
+ on :
3
+ release :
4
+ types : [released]
5
+ branches :
6
+ - development
7
+
8
+ env :
9
+ NX_BRANCH : ${{ github.event.number }}
10
+ NX_RUN_GROUP : ${{ github.run_id }}
11
+ NX_CLOUD_AUTH_TOKEN : ${{ secrets.NX_CLOUD_AUTH_TOKEN }}
12
+ MOZ_HEADLESS : 1
13
+ CONVENTIONAL_GITHUB_RELEASER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
14
+
15
+ jobs :
16
+ # one run
17
+ one_run :
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - name : Cancel Previous Runs
21
+
22
+ with :
23
+ access_token : ${{ secrets.GITHUB_TOKEN }}
24
+
25
+ # update npm tags
26
+ npm_tag_update :
27
+ runs-on : ubuntu-latest
28
+ needs : one_run
29
+ steps :
30
+ - uses : actions/checkout@v3
31
+ - uses : actions/cache@v3
32
+ - name : get-npm-version
33
+ id : package-version
34
+ uses :
martinbeentjes/[email protected]
35
+ - run : |
36
+ npm config set registry https://registry.npmjs.org/
37
+ npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
38
+ npm dist-tag add ng2-file-upload@${{ steps.package-version.outputs.current-version }} latest
You can’t perform that action at this time.
0 commit comments