Skip to content

Add publish workflow #3

Add publish workflow

Add publish workflow #3

Workflow file for this run

name: Main
on: push
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}