Skip to content

Release

Release #5

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
env:
CARGO_TERM_COLOR: always
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to crates.io
run: echo ${{ secrets.CRATES_TOKEN }} | cargo login
- name: Publish to crates.io
run: python scripts/publish-to-crates-io.py