Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 7f91d18

Browse files
committed
Attempt to fix GH actions timing out
1 parent 302fc55 commit 7f91d18

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,18 @@ jobs:
2222
- name: Checkout repository
2323
uses: actions/checkout@master
2424

25-
- name: Rust Cache
26-
uses: actions/cache@v2
27-
with:
28-
path: |
29-
~/.cargo/registry
30-
~/.cargo/git
31-
target
32-
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
25+
# TODO: Add back once can figure out why curl is timing out
26+
# - name: Rust Cache
27+
# uses: actions/cache@v2
28+
# with:
29+
# path: |
30+
# ~/.cargo/registry
31+
# ~/.cargo/git
32+
# target
33+
# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
3334

3435
- name: Compile and release
35-
uses: rust-build/rust-build.action@v1.3.2
36+
uses: rust-build/rust-build.action@v1.4.0
3637
env:
3738
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3839
with:
@@ -41,7 +42,7 @@ jobs:
4142
SRC_DIR: cli
4243
PRE_BUILD: ./bin/pre-build.sh
4344
EXTRA_FILES: "README.md LICENSE"
44-
TOOLCHAIN_VERSION: 1.63.0
45+
TOOLCHAIN_VERSION: 1.66.1
4546
# Breaks macOS builds
4647
# TODO: Re-enable on Linux only
4748
MINIFY: 'false'

0 commit comments

Comments
 (0)