Help with config file
Opened this issue · 0 comments
Denzy7 commented
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
[edit]
workflow file is running on multiple platforms, will that be an issue?