Skip to content

Commit 48fa646

Browse files
committed
Add --no-self-update to workflow.
1 parent add6554 commit 48fa646

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
- name: Update rust
8787
run: |
8888
rustup override set stable
89-
rustup update stable
89+
rustup update --no-self-update stable
9090
rustup target add ${{ matrix.binary_target }}
9191
9292
# Build client

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ env:
1111
CHANNEL: ${{ vars.DISTRIBUTION_CHANNEL }}
1212

1313
jobs:
14+
# checks:
15+
# uses: ./.github/workflows/checks.yml
16+
1417
publish:
1518
uses: ./.github/workflows/publish.yml
1619
# needs:
@@ -27,6 +30,7 @@ jobs:
2730
#if: ${{ false }}
2831
runs-on: ubuntu-latest
2932
needs:
33+
# - checks
3034
- publish
3135
- homebrew
3236
steps:

0 commit comments

Comments
 (0)