Initial commit

This commit is contained in:
2023-02-11 15:28:13 +01:00
commit c46afd5ff6
10 changed files with 435 additions and 0 deletions

17
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: publish
on:
push:
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Publish crate
run: cargo publish --token ${{ secrets.CRATES_TOKEN }}