File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 tagged-release :
11- name : Tagged release
1211 runs-on : ubuntu-latest
1312
1413 steps :
14+ # Checkout the exact commit tagged on the release.
15+ - name : Checkout repository
16+ uses : actions/checkout@v3
17+ with :
18+ ref : ${{ github.event.release.target_commitish }}
19+
20+ - name : Use NodeJS
21+ uses : actions/setup-node@v3
22+ with :
23+ node-version : 18.x
24+
1525 # If we can't build the release will be canceled.
16- - name : Build
17- run : npm run build
26+ - name : Install dependencies and build
27+ run : |
28+ npm install
29+ npm run build
1830
1931 - uses : marvinpinto/action-automatic-releases@latest
2032 with :
Original file line number Diff line number Diff line change 77jobs :
88 release :
99 runs-on : ubuntu-latest
10+
1011 steps :
1112 # Checkout the exact commit tagged on the release.
1213 - name : Checkout repository
You can’t perform that action at this time.
0 commit comments