From 5387867e909a8729554259fde18ef445eb20d47f Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Sun, 26 Jun 2022 08:04:19 -0700 Subject: [PATCH] checkout the shared workspace when building artifacts. --- .github/workflows/release.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4bc991a..36d1a04 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -68,8 +68,10 @@ jobs: - { on: windows-latest, goos: windows, goarch: amd64 } - { on: windows-latest, goos: windows, goarch: arm64 } steps: - - name: Checkout - uses: actions/checkout@v2 + - name: Download workspace + uses: actions/download-artifact@v3 + with: + name: workspace - uses: actions/setup-go@v3 with: go-version: '1.18.3' # The Go version to download (if necessary) and use.