Skip to content

feat: capture the summary of each video #7

feat: capture the summary of each video

feat: capture the summary of each video #7

Workflow file for this run

name: Build
on:
push:
paths:
- '**.py'
pull_request:
jobs:
Windows-Build:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.9'
architecture: 'x64'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller
- name: Build Executable File
run: |
pyinstaller --collect-all yangcong_tools -F main.py
- name: Upload Executable File
uses: actions/upload-artifact@v3
with:
name: yangcong_tools-test_version
path: dist/yangcong_tools.exe
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
dist/yangcong_tools.exe