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
when:
- event: push
branch: master
steps:
- name: install-toolchain
image: fish
commands:
- rustup toolchain install stable --profile minimal
- name: check
image: fish
environment:
CARGO_INCREMENTAL: false
CARGO_REGISTRIES_FORGEJO_INDEX:
from_secret: cargo_registries_forgejo_index
commands:
- cargo check
- name: publish (forgejo)
image: fish
environment:
CARGO_INCREMENTAL: false
CARGO_REGISTRIES_FORGEJO_INDEX:
from_secret: cargo_registries_forgejo_index
CARGO_REGISTRIES_FORGEJO_TOKEN:
from_secret: cargo_registries_forgejo_token
commands:
- cargo publish --registry forgejo
failure: ignore
- name: publish (cargo.io)
image: fish
environment:
CARGO_INCREMENTAL: false
CARGO_REGISTRY_TOKEN:
from_secret: cargo_registry_token
commands:
- cargo publish
failure: ignore