Skip to content

Commit e602393

Browse files
Update release.yml
1 parent 6c25d1a commit e602393

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,22 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
with:
1515
submodules: recursive
1616

17-
- name: Install Node.js and npm
18-
uses: actions/setup-node@v3
17+
- name: Fix post run npm cleanup
18+
run: mkdir -p /home/runner/.npm; touch /home/runner/package-lock.json
19+
continue-on-error: true
20+
21+
- uses: actions/setup-node@v3
1922
with:
20-
node-version: '14'
23+
node-version: 14
2124
cache: 'npm'
2225

23-
- name: Install coffeescript
24-
run: sudo npm install -g coffeescript@1.12.7
26+
- name: Install dependencies
27+
run: |
28+
sudo npm install -g coffeescript@1.12.7
2529
2630
- name: Get the version
2731
id: get_version

0 commit comments

Comments
 (0)