2023-01-24 21:11:04 -05:00
|
|
|
name: Publish
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
name: Publish
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-11 13:16:43 -05:00
|
|
|
uses: actions/checkout@v4
|
2023-01-24 21:11:04 -05:00
|
|
|
|
|
|
|
- name: Install Rust
|
2023-02-23 21:05:25 +01:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2023-01-24 21:11:04 -05:00
|
|
|
|
|
|
|
- name: Publish to crates.io
|
2023-02-05 19:46:03 -05:00
|
|
|
uses: katyo/publish-crates@v2
|
2023-01-24 21:11:04 -05:00
|
|
|
with:
|
|
|
|
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
|
|
ignore-unpublished-changes: true
|