-
Notifications
You must be signed in to change notification settings - Fork 140
118 lines (92 loc) · 3.53 KB
/
release-libs.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# This workflow is used to publish SV2 crates to crates.io
# the workflow tries to publish all the library crates by running scripts/release-libs.sh
# in case the `cargo publish` command fails, the script returns 1 and the entire workflow fails
# the only exception is when the `cargo publish` command fails because the crate has already
# been published, in which case the workflow continues
name: Release Libs
on:
# Manually run by going to "Actions/Release" in Github and running the workflow
workflow_dispatch:
# every time a new release tag is created
push:
tags:
- "v*.*.*"
jobs:
libs_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
override: true
- name: Login
run: cargo login ${{ secrets.CRATES_IO_DEPLOY_KEY }}
- name: Publish crate common
run: |
./scripts/release-libs.sh common
- name: Publish crate buffer_sv2
run: |
./scripts/release-libs.sh utils/buffer
- name: Publish crate no_serde_sv2_derive_codec
run: |
./scripts/release-libs.sh protocols/v2/binary-sv2/no-serde-sv2/derive_codec
- name: Publish crate no_serde_sv2_codec
run: |
./scripts/release-libs.sh protocols/v2/binary-sv2/no-serde-sv2/codec
- name: Publish crate serde_sv2
run: |
./scripts/release-libs.sh protocols/v2/binary-sv2/serde-sv2
- name: Publish crate binary_sv2
run: |
./scripts/release-libs.sh protocols/v2/binary-sv2/binary-sv2
- name: Publish crate const_sv2
run: |
./scripts/release-libs.sh protocols/v2/const-sv2
- name: Publish crate framing_sv2
run: |
./scripts/release-libs.sh protocols/v2/framing-sv2
- name: Publish crate noise_sv2
run: |
./scripts/release-libs.sh protocols/v2/noise-sv2
- name: Publish crate codec_sv2
run: |
./scripts/release-libs.sh protocols/v2/codec-sv2
- name: Publish crate common_messages
run: |
./scripts/release-libs.sh protocols/v2/subprotocols/common-messages
- name: Publish crate job_declaration
run: |
./scripts/release-libs.sh protocols/v2/subprotocols/job-declaration
- name: Publish crate mining
run: |
./scripts/release-libs.sh protocols/v2/subprotocols/mining
- name: Publish crate template_distribution
run: |
./scripts/release-libs.sh protocols/v2/subprotocols/template-distribution
- name: Publish crate sv2_ffi
run: |
./scripts/release-libs.sh protocols/v2/sv2-ffi
- name: Publish crate roles_logic_sv2
run: |
./scripts/release-libs.sh protocols/v2/roles-logic-sv2
- name: Publish crate v1
run: |
./scripts/release-libs.sh protocols/v1
- name: Publish crate bip32-key-derivation
run: |
./scripts/release-libs.sh utils/bip32-key-derivation
- name: Publish crate error-handling
run: |
./scripts/release-libs.sh utils/error-handling
- name: Publish crate key-utils
run: |
./scripts/release-libs.sh utils/key-utils
- name: Publish crate network_helpers_sv2
run: |
./scripts/release-libs.sh roles/roles-utils/network-helpers
- name: Publish crate rpc_sv2
run: |
./scripts/release-libs.sh roles/roles-utils/rpc