We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c58fc3 commit 83b7edbCopy full SHA for 83b7edb
.github/workflows/publish.yml
@@ -0,0 +1,15 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - master
5
+jobs:
6
+ publish:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: actions-rs/toolchain@v1
11
+ with:
12
+ toolchain: stable
13
+ - run: cargo publish
14
+ env:
15
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Cargo.toml
@@ -1,5 +1,6 @@
[package]
name = "jtd-infer"
+description = "Generate JSON Typedef schemas from example data"
version = "0.1.0"
authors = ["Ulysse Carion <[email protected]>"]
edition = "2018"
0 commit comments