Skip to content

Commit 277baed

Browse files
added github action for building
1 parent 255faea commit 277baed

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
# pull_request:
7+
# branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: make
17+
run: make
18+
- name: Create Release
19+
env:
20+
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
21+
run: |
22+
gh release create ${{ github.ref_name }} \
23+
--title "Release ${{ github.ref_name }}" \
24+
--notes "Automated release for tag ${{ github.ref_name }}" \
25+
bf

0 commit comments

Comments
 (0)