From 36bd93bb501bcce57c6e930e9b2f0211d9e73ca4 Mon Sep 17 00:00:00 2001 From: RatzzFatzz Date: Tue, 4 Feb 2025 12:33:19 +0100 Subject: [PATCH] Fix windows artifact upload --- .github/workflows/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 169d149..82c6896 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,8 +70,7 @@ jobs: run: mvn clean package --file pom.xml -P windows - name: Upload artifacts - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: AButler/upload-release-assets@v3.0 with: - args: 'target/installer/*' \ No newline at end of file + files: 'target/installer/*' + repo-token: ${{ secrets.GITHUB_TOKEN }}