beeref/.github/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: line 19: found a tab character where an indentation space is expected
2021-07-06 19:50:10 +02:00

31 lines
No EOL
589 B
YAML

name: build Linux
on: workflow_dispatch
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install -e .
- name: Run build.py
run: |
python build.py
- uses: actions/upload-artifact@v2
- name: Upload artifact
with:
name: build
path: dist/*.zip
retention-days: 5