From 39ffdf8ea4c96a0971b72108dbe0f49ab528e1b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B0=D0=B2=D0=B5=D0=BB=20=D0=96=D1=83=D0=BA=D0=BE?= =?UTF-8?q?=D0=B2?= <33721692+LeaveMyYard@users.noreply.github.com> Date: Fri, 26 May 2023 21:26:58 +0300 Subject: Remove release pipline --- .github/workflows/release-with-executable.yml | 40 --------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/release-with-executable.yml (limited to '.github/workflows') diff --git a/.github/workflows/release-with-executable.yml b/.github/workflows/release-with-executable.yml deleted file mode 100644 index 97c022b..0000000 --- a/.github/workflows/release-with-executable.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Build and Release - -on: - release: - types: [created] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install pyinstaller - apt-get install binutils - - - name: Build with PyInstaller - run: | - pyinstaller krr.py - zip -r "krr-linux-${{ github.ref_name }}.zip" ./dist/krr - - - name: Upload Release Asset - uses: actions/upload-release-asset@v1.0.2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ github.event.release.upload_url }} - asset_path: . - asset_name: "krr-linux-${{ github.ref_name }}.zip" - asset_content_type: application/octet-stream -- cgit v1.2.3