diff --git a/.github/workflows/Pyinstaller.yml b/.github/workflows/Pyinstaller.yml deleted file mode 100644 index 9cec1bd..0000000 --- a/.github/workflows/Pyinstaller.yml +++ /dev/null @@ -1,44 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the "master" branch - push: - branches: [ "flet-v4" ] - pull_request: - branches: [ "master" ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: windows-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - - name: Setup Python - uses: actions/setup-python@v4.1.0 - - # Runs a single command using the runners shell - - name: Install pip - run: pip install -r requirements.txt - - # Runs a set of commands using the runners shell - - name: Pyinstaller - run: | - pyinstaller -F init.py -i icon.ico --add-data "assets;assets" - - name: Add & Commit - # You may pin to the exact commit or the version. - # uses: EndBug/add-and-commit@998652d28d7702d095d40f52ae42982a80ae8c7d - uses: EndBug/add-and-commit@v9.0.1 - with: - add: ./dist - message: 自动打包