diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6102254..99b8d33 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,8 +34,11 @@ jobs: body: draft: false prerelease: false - - uses: AButler/upload-release-assets@v2.0 + - name: Upload files + uses: svenstaro/upload-release-action@v2 with: - files: 'build/*' - repo-token: ${{ secrets.GITHUB_TOKEN }} - release-tag: ${{ github.ref }} + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: build/* + tag: ${{ github.ref }} + overwrite: true + file_glob: true \ No newline at end of file