diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c3e0b55..6d6c8ee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -296,6 +296,8 @@ jobs: # Use bash, even on Windows to make find available shell: bash # A release need to be created before upload - run: gh release upload ${{ env.RELEASE_VERSION }} "$(find ./build -name *.tar.gz)" --clobber + run: | + git config --global --add safe.directory '*' + gh release upload ${{ env.RELEASE_VERSION }} "$(find ./build -name *.tar.gz)" --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file