-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (32 loc) · 813 Bytes
/
Copy pathbuild.yml
File metadata and controls
34 lines (32 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Build
on:
push:
branches: [ master ]
paths:
- '**.py'
- '.github/workflows/build.yml'
- 'Caddyfile'
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8.3'
- name: Install Dependencies
run: pip3 install -r requirements.txt
- name: Build Magisk Module
run: python3 build.py
- name: Release Module
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: latest
prerelease: false
title: "Latest Build"
files: |
LICENSE
RProxy2.zip