From f5a4f312e95ad1a50743f5d0eaf52f1848ef31a2 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 17 Dec 2024 22:52:11 +0000 Subject: [PATCH] FIXED I HOPE --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 80149a3..30661e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,9 +21,9 @@ jobs: run: go mod download - name: Build ddnsu binaries run: make - - name: Upload binaries as GitHub Release - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Upload artifacts as a release + uses: softprops/action-gh-release@v2 with: - args: "build/*" + files: "build/*" + token: ${{ secrets.GITHUB_TOKEN }}, + draft: true