-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (55 loc) · 1.56 KB
/
buid.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Build and Release
on:
create:
tags:
- v*
jobs:
build:
runs-on: arch-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Nuitka
run: |
sudo pacman -Syu
sudo pacman -S python python-pip python wheel
python -m pip install nuitka
- name: Install Protry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Prepare Enviroment
run: |
poetry install
- name: Building...
run: |
python -m nuitka main.py --standalone --onefile --output-filename=yala --output-dir=dist/
- name: Compressing....
run: |
cd dist
tar -cf yala.tar.gz yala --auto-compress
release:
needs: build
runs-on: arch-latest
steps:
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
This is a Release
draft: true
prerelease: false
- name: Upload Release Asset
id: upload_release_asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/yala.tar.gz
asset_name: yala.tar.gz
asset_content_type: application/octet-stream