From 38af29536bc93215a261817dd526cad57c0af00a Mon Sep 17 00:00:00 2001 From: juewuy Date: Thu, 8 Feb 2024 11:41:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=BC=96=E8=AF=91=E6=97=B6go?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E4=B8=8D=E6=AD=A3=E7=A1=AE=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/update_meta_core.yaml | 6 ++++-- .github/workflows/update_singbox_core.yaml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_meta_core.yaml b/.github/workflows/update_meta_core.yaml index 2d7ab61..0c3a293 100644 --- a/.github/workflows/update_meta_core.yaml +++ b/.github/workflows/update_meta_core.yaml @@ -100,7 +100,9 @@ jobs: fail-fast: false runs-on: ubuntu-latest - needs: meta + needs: + - go + - meta env: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }} @@ -121,7 +123,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: ${{ steps.go.outputs.version }} + go-version: ${{needs.go.outputs.version}} - name: Set ENV run: | diff --git a/.github/workflows/update_singbox_core.yaml b/.github/workflows/update_singbox_core.yaml index b27cc70..40a5182 100644 --- a/.github/workflows/update_singbox_core.yaml +++ b/.github/workflows/update_singbox_core.yaml @@ -110,7 +110,9 @@ jobs: fail-fast: false runs-on: ubuntu-latest - needs: sing-box + needs: + - go + - sing-box env: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }} @@ -132,7 +134,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: ${{ steps.go.outputs.version }} + go-version: ${{needs.go.outputs.version}} - name: checkout sing repository if: ${{ env.REPO == 'PuerNya/sing-box' }}