Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
navrocky committed Apr 4, 2024
1 parent eebd17f commit f07913f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build dcw
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: ./build-uclibc.sh

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: dcw
path: dist/dcw

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/dcw

0 comments on commit f07913f

Please sign in to comment.