Skip to content

Commit 3a17446

Browse files
committed
build registration and trigger snapshot service
1 parent 9d3b92e commit 3a17446

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/release.yml

+26
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,32 @@ jobs:
218218
--release
219219
--target ${{ matrix.config.target }}
220220
221+
- name: Build snapshot trigger service binary
222+
uses: actions-rs/cargo@v1
223+
env:
224+
DATE: ${{ needs.create_release.outputs.date }}
225+
with:
226+
use-cross: ${{ matrix.cross }}
227+
command: build
228+
args: >
229+
--manifest-path snapshot-trigger-service/Cargo.toml
230+
--verbose
231+
--release
232+
--target ${{ matrix.config.target }}
233+
234+
- name: Build registration service binary
235+
uses: actions-rs/cargo@v1
236+
env:
237+
DATE: ${{ needs.create_release.outputs.date }}
238+
with:
239+
use-cross: ${{ matrix.cross }}
240+
command: build
241+
args: >
242+
--manifest-path registration-service/Cargo.toml
243+
--verbose
244+
--release
245+
--target ${{ matrix.config.target }}
246+
221247
- id: pack-assets
222248
name: Pack binaries
223249
shell: bash

0 commit comments

Comments
 (0)