Skip to content

Add release action

Add release action #1

Workflow file for this run

name: Release
on:
push:
tags: 'v[0-9]+.[0-9]+.[0-9]+'
branches: [ "main" ]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: manoadamro/rust-release@v1
with:
owner: ${{ github.repository_owner }}
repo: ${{ github.repository }}
token: ${{ secrets.GITHUB_TOKEN }}