From 1c2a8a42af984a7b6d4aa9d613c7adfe81321ec7 Mon Sep 17 00:00:00 2001 From: QiuSYan Date: Fri, 12 Jul 2024 09:06:44 +0800 Subject: [PATCH] deleted: .github/workflow.yml --- .github/workflow.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflow.yml diff --git a/.github/workflow.yml b/.github/workflow.yml deleted file mode 100644 index f808a38..0000000 --- a/.github/workflow.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Build Actions - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: windows-latest - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.12' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install pyinstaller - - - name: Build executable - run: pyinstaller -F gacha.py -i icon.ico - - - name: Create ZIP file - run: | - cp banners.json dist - cd dist - 7z a ../gacha.zip gacha.exe banners.json - - - name: Upload artifact - uses: actions/upload-artifact@v2 - with: - name: gacha - path: gacha.zip