Create release for 5.2.0 on GitHub. #24
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
################################################### | |
# Create a GitHub Release when a tag is pushed. | |
# | |
# @notice You must enable write permissions for this action to work. | |
# 1. GitHub Settings | |
# 2. Actions | |
# 3. General | |
# 4. Workflow permissions | |
# 5. Enable "read and write permissions" | |
# | |
# @version 3.0.0 | |
# | |
################################################### | |
name: Create GitHub Release | |
run-name: Create release for ${{ github.ref_name }} on GitHub. | |
on: | |
push: | |
tags-ignore: | |
- "*beta*" | |
jobs: | |
create-release: | |
uses: lipemat/public-actions/.github/workflows/create-release.yml@version/1 |