diff --git a/.github/workflows/build-package.yaml b/.github/workflows/build-package.yaml index 37c9bc8b1..78f0ffa81 100644 --- a/.github/workflows/build-package.yaml +++ b/.github/workflows/build-package.yaml @@ -40,12 +40,7 @@ jobs: - name: Debug run: ls -al ./build/dist/ - + - name: Upload files to a GitHub release - uses: svenstaro/upload-release-action@2.9.0 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: build/dist/* - tag: ${{ github.ref_name }} - overwrite: true - file_glob: true + run: for file in ./build/dist/*; do gh release upload "${{ github.ref_name }}" "$file" --repo="$GITHUB_REPOSITORY"; done +