Skip to content

πŸ› Fixed bug

πŸ› Fixed bug #6

Workflow file for this run

name: "Release"
on:
push:
tags:
- "v*.*.*" # Match tags that start with 'v'
workflow_dispatch:
inputs:
tag:
description: Tag for automatic release
required: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Upload Release
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.TOKEN }}