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 }}