Skip to content

Commit c7bd880

Browse files
authored
Add CI to claim crates (#2299)
1 parent 1825737 commit c7bd880

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/claim-crates.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)