-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (35 loc) · 968 Bytes
/
main.yml
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
34
35
36
37
38
39
name: Pre release
on:
[push]
permissions:
contents: write
jobs:
build:
name: Auto Release
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.6"
- name: Generate Bundle
run: |
python generate-bundle.py
- name: Install pyminifier
run: pip install pyminifier
- name: Minify Bundle
run: pyminifier -d /output --lzma *.py --nonlatin --obfuscate -replacement-length=1
- name: Remove File
run: |
rm -rf /output/generate-bundle.py
rm -rf /output/utils.py
- name: Auto release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: latest
prerelease: true
files: |
/output/*.py