Update v3 to v3.2.3 + Add important message to README.md #10
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: Publish to GitHub Releases | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build-n-publish-to-github: | |
name: Build and publish to GitHub Releases | |
runs-on: ubuntu-latest | |
steps: | |
- name: Publish to GitHub Releases | |
uses: softprops/action-gh-release@v1 | |
with: | |
# Use the newest commit message as the release description | |
body: ${{ github.event.head_commit.message }} |