Skip to content

Commit 551862e

Browse files
committed
add build of bin
1 parent aebe2b4 commit 551862e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Main
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
- name: Build
12+
run: cargo build --verbose -r
13+
- name: Release
14+
uses: softprops/action-gh-release@v2
15+
if: startsWith(github.ref, 'refs/tags/')
16+
with:
17+
files: |
18+
./target/release/fimer

0 commit comments

Comments
 (0)