From bfb3925848b00864373c7e82ce62074f0b512d6b Mon Sep 17 00:00:00 2001 From: Linus_tt <100426634+BrownNPC@users.noreply.github.com> Date: Sat, 4 May 2024 00:35:19 +0500 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/main.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 9ddc1c7..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Build and Release Executable - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.12.2' # Replace 'x' with your desired Python version - - - name: Install dependencies - run: | - pip install pyinstaller - - - name: Build executable - run: | - pyinstaller --onefile --add-data="protontricks/:protontricks/" --add-data="Injector.exe:." pg3d-injector.py - - - name: upload release - uses: ncipollo/release-action@v1 - with: - artifacts: ./dist/pg3d-injector - tag: ${{ github.run_number }} - name: Release ${{ github.run_number }} - commit: ${{ github.sha }} - token: ${{ secrets.GITHUB_TOKEN }}