Skip to content

Commit e33fc4a

Browse files
authored
Add artifact upload step to Ubuntu workflow
Added step to upload build artifact for Ubuntu workflow.
1 parent acfd920 commit e33fc4a

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ubuntu.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Build
20+
run: cargo build --verbose
21+
22+
- name: Upload Artifact
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: ubuntu-binary
26+
path: target/release/qr_rs

0 commit comments

Comments
 (0)