Skip to content

Merge pull request #7 from AlvinCoded/beta #1

Merge pull request #7 from AlvinCoded/beta

Merge pull request #7 from AlvinCoded/beta #1

Workflow file for this run

# Automated Release Management
name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: |
LICENSE.md
README.md
body_path: ${{ github.workspace }}/CHANGELOG.md
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}