Commit 60f2b3f 1 parent 91e83e1 commit 60f2b3f Copy full SHA for 60f2b3f
File tree 2 files changed +38
-2
lines changed
2 files changed +38
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ permissions :
4
+ contents : write
5
+
6
+ on :
7
+ push :
8
+ branches :
9
+ - lyra
10
+
11
+ jobs :
12
+ build :
13
+ name : Build and Release
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+
18
+ - name : Install Rust
19
+ run : rustup update stable && rustup default stable
20
+
21
+ - name : Build
22
+ run : cargo build --release
23
+
24
+ - name : Package Binary
25
+ run : |
26
+ cd target/release
27
+ tar czf ../../binary.tar.gz *
28
+ cd ../..
29
+
30
+ - name : Create Release
31
+ id : create_release
32
+ uses : softprops/action-gh-release@v1
33
+ with :
34
+ files : binary.tar.gz
35
+ draft : false
36
+ prerelease : false
37
+ generate_release_notes : true
Original file line number Diff line number Diff line change 24
24
cloud.google.com/machine-family : " c3"
25
25
containers :
26
26
- name : dolos-container
27
- image : us-central1-docker.pkg.dev/comet-7aaf0/comet-ar/dolos:sha-2520fae
27
+ image : us-central1-docker.pkg.dev/comet-7aaf0/comet-ar/dolos:sha-91e83e1
28
28
tty : true
29
- stdin : true
30
29
ports :
31
30
- containerPort : 50051
32
31
You can’t perform that action at this time.
0 commit comments