Skip to content

Commit 7817265

Browse files
authored
Add GitHub workflow to compile Linux binary (#1)
Creates a new GitHub workflow to build the Linux executable.
1 parent 3712546 commit 7817265

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/compile.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Compile
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
linux:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: make
20+
run: make
21+
22+
- name: Upload artifacts
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: lhfire-linux
26+
path: lhfire

0 commit comments

Comments
 (0)