update release notes #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 GitHub Release | |
on: | |
push: | |
tags: | |
- "v*" # Trigger when a version tag is pushed (e.g., v1.0.0) | |
jobs: | |
create-release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Create GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: $ | |
name: Mocha $ | |
bodyFile: RELEASE.md |