We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe36d9a commit d814f9aCopy full SHA for d814f9a
.github/workflows/rust.yml
@@ -17,6 +17,8 @@ jobs:
17
- uses: actions/checkout@v4
18
with:
19
submodules: true
20
+ - name: Install Protoc
21
+ uses: arduino/setup-protoc@v3
22
# Update references
23
- name: Git Submodule Update
24
run: |
@@ -31,3 +33,12 @@ jobs:
31
33
run: cargo build --verbose
32
34
- name: Run tests
35
run: cargo test --verbose
36
+ - name: Upload artifact
37
+ uses: actions/upload-artifact@v4
38
+ with:
39
+ name: Binary
40
+ retention-days: 5
41
+ overwrite: true
42
+ path: |
43
+ ${{ steps.compile.outputs.BUILT_ARCHIVE }}
44
+ ${{ steps.compile.outputs.BUILT_CHECKSUM }}
0 commit comments