diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e5dcd8..3ad18d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,28 +75,22 @@ jobs: runs-on: ubuntu-latest needs: [get-tag, build-image, build-binary] steps: - # - name: Download arm64 binary - # uses: actions/download-artifact@v4 - # with: - # name: cup-linux-aarch64 - # path: cup-linux-aarch64 - - # - name: Download x86 binary - # uses: actions/download-artifact@v4 - # with: - # name: cup-linux-x86_64 - # path: cup-linux-x86_64 - - - name: Download binaries + - name: Download arm64 binary uses: actions/download-artifact@v4 + with: + name: cup-linux-aarch64 + path: cup-linux-aarch64 - - name: Debug - run: ls + - name: Download x86 binary + uses: actions/download-artifact@v4 + with: + name: cup-linux-x86_64 + path: cup-linux-x86_64 - name: Extract and rename binaries run: | - unzip cup-linux-aarch64.zip && mv cup cup-linux-aarch64 - unzip cup-linux-x86_64.zip && mv cup cup-linux-x86_64 + unzip cup-linux-aarch64 && mv cup cup-linux-aarch64 + unzip cup-linux-x86_64 && mv cup cup-linux-x86_64 - name: Create release uses: softprops/action-gh-release@v2