-
-
Notifications
You must be signed in to change notification settings - Fork 6
45 lines (39 loc) · 1.1 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
on:
push:
# Pattern matched against refs/tags
tags:
- '*' # Push events to every tag not containing /
pull_request:
workflow_dispatch:
name: Publish
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Publish on crates.io
run: cargo publish --features full --token ${{ secrets.CRATES_TOKEN }}
check-publish:
name: Check Publish
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v') != true
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Check if can publish on crates.io
run: cargo publish --features cli --token ${{ secrets.CRATES_TOKEN }} --dry-run -v