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