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 add6554 commit 48fa646Copy full SHA for 48fa646
.github/workflows/publish.yml
@@ -86,7 +86,7 @@ jobs:
86
- name: Update rust
87
run: |
88
rustup override set stable
89
- rustup update stable
+ rustup update --no-self-update stable
90
rustup target add ${{ matrix.binary_target }}
91
92
# Build client
.github/workflows/release.yml
@@ -11,6 +11,9 @@ env:
11
CHANNEL: ${{ vars.DISTRIBUTION_CHANNEL }}
12
13
jobs:
14
+ # checks:
15
+ # uses: ./.github/workflows/checks.yml
16
+
17
publish:
18
uses: ./.github/workflows/publish.yml
19
# needs:
@@ -27,6 +30,7 @@ jobs:
27
30
#if: ${{ false }}
28
31
runs-on: ubuntu-latest
29
32
needs:
33
+ # - checks
34
- publish
35
- homebrew
36
steps:
0 commit comments