-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (37 loc) · 1.05 KB
/
publish.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
name: publish
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Publish egobox-doe
uses: katyo/publish-crates@v2
with:
path: ./crates/doe
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish egobox-gp
uses: katyo/publish-crates@v2
with:
path: ./crates/gp
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish egobox-moe
uses: katyo/publish-crates@v2
with:
path: ./crates/moe
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish egobox-ego
uses: katyo/publish-crates@v2
with:
path: ./crates/ego
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}