Skip to content

release: 0.12.3

release: 0.12.3 #29

Workflow file for this run

name: Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
ubuntu:
name: Release to crates.io
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Publish to cargo
env:
CARGO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: |
cargo publish --token "${CARGO_TOKEN}"