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 8bd25ea commit ae36e71Copy full SHA for ae36e71
.github/workflows/release.yml
@@ -22,6 +22,17 @@ jobs:
22
binary_path: target/superoptimized/sqlpage
23
steps:
24
- uses: actions/checkout@v3
25
+ - name: Set up cargo cache
26
+ uses: actions/cache@v3
27
+ with:
28
+ path: |
29
+ ~/.cargo/bin/
30
+ ~/.cargo/registry/index/
31
+ ~/.cargo/registry/cache/
32
+ ~/.cargo/git/db/
33
+ target/
34
+ key: release-${{ runner.os }}-check-${{ hashFiles('**/Cargo.lock') }}
35
+ restore-keys: release-${{ runner.os }}-check-
36
- run: cargo build --profile superoptimized --locked
37
- uses: actions/upload-artifact@v3
38
with:
0 commit comments