* Update README.md
* Update release-cross.yml
* Update release.yml
* style(self_update): Run cargo fmt (#108)
The commit 9105a8aac is not formatted, which breaks the CI check.
Co-authored-by: Thomas Schönauer <37108907+DottoDev@users.noreply.github.com>
* Cleanup CI/CD pipeline (#115)
Co-authored-by: pan93412 <pan93412@gmail.com>
30 lines
676 B
YAML
30 lines
676 B
YAML
on:
|
|
# workflow_run:
|
|
# workflows: ["Check SemVer compliance"]
|
|
# types:
|
|
# - completed
|
|
release:
|
|
types: [published, edited]
|
|
|
|
name: Publish to crates.io on release
|
|
|
|
jobs:
|
|
prepare:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly-2022-08-03
|
|
override: true
|
|
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: katyo/publish-crates@v1
|
|
with:
|
|
dry-run: true
|
|
check-repo: ${{ github.event_name == 'push' }}
|
|
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
ignore-unpublished-changes: true
|