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 1825737 commit c7bd880Copy full SHA for c7bd880
.github/workflows/claim-crates.yml
@@ -0,0 +1,25 @@
1
+name: Claim Crates
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ claim-crates:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
13
14
+ - name: Rust Cache
15
+ uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
16
+ with:
17
+ cache-on-failure: true
18
19
+ - name: install parity-publish
20
+ run: cargo install [email protected]
21
22
+ - name: parity-publish claim
23
+ env:
24
+ PARITY_PUBLISH_CRATESIO_TOKEN: ${{ secrets.CRATESIO_PUBLISH_CLAIM_TOKEN }}
25
+ run: parity-publish claim
0 commit comments