From 6950b079b97a20ce536eab69d1dee61e65c3a81f Mon Sep 17 00:00:00 2001 From: Tarrence van As Date: Sun, 26 Nov 2023 13:45:24 -0500 Subject: [PATCH] Fix artifact path in release script --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df726fb4bd..4ccb03f5dd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -194,7 +194,7 @@ jobs: # Upload these for use with the Docker build later - name: Upload binaries - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: binaries path: | @@ -241,10 +241,9 @@ jobs: uses: actions/checkout@v2 - name: Download binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: binaries - path: target/ - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1