softprops/action-gh-release

Help with config file

Opened this issue · 0 comments

I'm using

    - name: Release
      uses: softprops/action-gh-release@v2
      if: startsWith(github.ref, 'refs/tags/')
      with:
        draft: false
        files: out-${{ matrix.os }}/**
        prerelease: false

and run this

git push origin main
git push --tags

but the release is not created

out-${{ matrix.os }}/** is a directory containing cmake --install output

Whole file

[edit]
workflow file is running on multiple platforms, will that be an issue?