We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf16ca commit ab7004fCopy full SHA for ab7004f
.github/workflows/release.yaml
@@ -10,7 +10,6 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
- - uses: bahmutov/npm-install@v1
14
- uses: actions-rs/toolchain@v1
15
with:
16
toolchain: stable
@@ -19,6 +18,16 @@ jobs:
19
18
crate: semantic-release-rust
20
version: latest
21
use-tool-cache: true
+ - uses: actions/cache@v2
22
+ with:
23
+ path: ~/.npm
24
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
25
+ restore-keys: |
26
+ ${{ runner.os }}-node-
27
+ - uses: actions/setup-node@v2-beta
28
29
+ node-version: '12'
30
+ - run: npm install --save-dev semantic-release@15
31
- name: Release
32
env:
33
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments