Bump jidicula/clang-format-action from 4.11.0 to 4.12.0 #72
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
# Test that this workflow parses on PR | |
pull_request: | |
push: | |
tags: | |
- v* | |
- version/* | |
permissions: | |
# writes to the Releases API | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: softprops/action-gh-release@v2 | |
# Only execute on a tag | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
generate_release_notes: true |