Skip to content

0.3.1

0.3.1 #21

Workflow file for this run

name: Release
on:
release:
types: [published]
workflow_dispatch:
description: "Manually publish release"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CRATES_IO_TOKEN }}
path: '.'