Skip to content

Merge pull request #3 from navidys/develop #5

Merge pull request #3 from navidys/develop

Merge pull request #3 from navidys/develop #5

Workflow file for this run

---
name: Publish
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
publish_crate:
name: Publish crate
runs-on: 'ubuntu-latest'
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: cargo publish --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}