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 1f2f1b6 commit 8151770Copy full SHA for 8151770
.github/workflows/release.yaml
@@ -10,10 +10,17 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
+ - uses: actions/cache@v2
14
+ id: cache
15
+ with:
16
+ path: |
17
+ ~/.cargo/bin/semantic-release-rust
18
+ key: ${{ runner.os }}-semantic-release-rust-${{ hashFiles('.github/workflows/release.yaml') }}
19
- uses: actions-rs/toolchain@v1
20
with:
21
toolchain: stable
22
- uses: actions-rs/[email protected]
23
+ if: steps.cache.outputs.cache-hit != 'true'
24
25
crate: semantic-release-rust
26
version: 1.0.0-alpha.6
0 commit comments