diff --git a/.github/workflows/create_release_with_packages.yml b/.github/workflows/create_release_with_packages.yml index f842f2b..54bd590 100644 --- a/.github/workflows/create_release_with_packages.yml +++ b/.github/workflows/create_release_with_packages.yml @@ -28,9 +28,11 @@ jobs: package_info_path: "build/.github/workflows/package.json" - name: "Upload release binary" - uses: marvinpinto/action-automatic-releases@latest - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - prerelease: false - files: | - *.curapackage \ No newline at end of file + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + RELEASE_VERSION: ${{ steps.vars.outputs.tag }} + run: | + cd build + for f in $(find ../ -type f -name "*.curapackage"); do + gh release upload $RELEASE_VERSION $f --clobber + done \ No newline at end of file