Skip to content

Commit

Permalink
chore: add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
budchirp committed May 11, 2024
1 parent 4c9e1ff commit 973af0e
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

on: [push, pull_request]

jobs:
build-overlays:
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: '17'

- name: Create
run: ./create.sh

- uses: actions/upload-artifact@v3
with:
name: magisk-module
path: .

0 comments on commit 973af0e

Please sign in to comment.