Skip to content

Commit

Permalink
Add GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oxan committed Jan 24, 2024
1 parent c72162a commit 58b84da
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
build:
name: Build OpenWRT package
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build package
run: |
chmod 0777 build/bin/
./makepkg.sh
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: package
path: build/bin/packages/**/*.ipk

0 comments on commit 58b84da

Please sign in to comment.