Skip to content

Commit

Permalink
Add actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Nov 26, 2023
1 parent 36c14c5 commit 02f4cad
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/module.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Magisk/KernelSU Module

on:
push:
tags: [ v*.*.* ]

jobs:
build:
name: Build Module
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Apt Dependencies
run: |
sudo apt update -y && sudo apt upgrade -y
sudo apt install zip unzip -y
- name: Make
shell: bash
run: |
zip -r "xh.zip" * -x ".git" -x "README.md"
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: 'xh.zip'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 02f4cad

Please sign in to comment.