From 8c20e6fbd7f82372bf11946dec0e6d371a48b758 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Fri, 8 Oct 2021 18:30:48 +0900 Subject: [PATCH] Fix release pipeline, take 2 Fix issue 304 Signed-off-by: Akihiro Suda --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0380da668ac..a8dd05e6ff2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,6 +33,7 @@ jobs: needs: artifacts-darwin timeout-minutes: 20 steps: + - uses: actions/checkout@v2 - uses: actions/download-artifact@v2 with: name: artifacts-darwin @@ -44,9 +45,8 @@ jobs: run: | sudo apt-get update sudo apt-get install -y gcc-aarch64-linux-gnu - - uses: actions/checkout@v2 - name: "Compile binaries" - run: make artifacts + run: make artifacts-linux - name: "SHA256SUMS" run: | ( cd _artifacts; sha256sum *.tar.gz ) | tee /tmp/SHA256SUMS