Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: Build 123pan
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Buile with Pyinstaller
shell: cmd
run: |
build.bat
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: 123pan
path: ./dist/
if-no-files-found: error