We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac5ee86 + 10cc8db commit becc13dCopy full SHA for becc13d
.github/workflows/publish.yml
@@ -0,0 +1,31 @@
1
+name: Publish on crates.io
2
+on:
3
+ release:
4
+ types: [created]
5
+
6
+jobs:
7
+ publish:
8
+ name: Publish
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@master
12
+ - name: Install Rust
13
+ uses: actions-rs/toolchain@v1
14
+ with:
15
+ toolchain: stable
16
+ profile: minimal
17
+ override: true
18
+ - name: Cargo login
19
+ uses: actions-rs/cargo@v1
20
21
+ command: login
22
+ args: -- ${{ secrets.CARGO_TOKEN }}
23
+ - name: Publish relations_procmacro
24
25
26
+ command: publish
27
+ args: --manifest-path relations_procmacro/Cargo.toml
28
+ - name: Publish relations
29
30
31
0 commit comments