We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GitHub pipelines to do create .exe files and publish them for download under "Releases" as soon as a tag of the form v*.*.* is pushed.
v*.*.*
https://github.com/marketplace/actions/gh-release looks like a good fit, an alternative would be to simply use the gh tool directly using YAML:
gh
run: | gh release create ${{ env.VERSION }} -n "${{ env.MESSAGE }}" -t "${{ env.NAME }}" ${{ env.FILES }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: "tag for release" MESSAGE: "message for release" NAME: "release name" FILES: path/to/file1 path/to/file2 ...
(Source: softprops/action-gh-release#107 (comment))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add GitHub pipelines to do create .exe files and publish them for download under "Releases" as soon as a tag of the form
v*.*.*
is pushed.https://github.com/marketplace/actions/gh-release looks like a good fit, an alternative would be to simply use the
gh
tool directly using YAML:(Source: softprops/action-gh-release#107 (comment))
The text was updated successfully, but these errors were encountered: