Merge pull request #1626 from arjun-1/fix-functional-options-diff-ind… #3
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: Create release from new tag | |
# this flow will be run only when new tags are pushed that match our pattern | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create GitHub release from tag | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true |