Skip to content

πŸŽ‰ Added new component (#4) #8

πŸŽ‰ Added new component (#4)

πŸŽ‰ Added new component (#4) #8

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:
generateReleaseNotes: true
token: ${{ secrets.TOKEN }}