From 80e4c148c2810b36ea964370a64436f42365b79b Mon Sep 17 00:00:00 2001 From: Ashish Patil <67854138+code2k13@users.noreply.github.com> Date: Sat, 7 Jan 2023 08:42:31 +0530 Subject: [PATCH] deleting directory --- workflows/build_linux.yml | 39 -------------------------------- workflows/build_macos.yml | 39 -------------------------------- workflows/build_windows.yml | 44 ------------------------------------- 3 files changed, 122 deletions(-) delete mode 100644 workflows/build_linux.yml delete mode 100644 workflows/build_macos.yml delete mode 100644 workflows/build_windows.yml diff --git a/workflows/build_linux.yml b/workflows/build_linux.yml deleted file mode 100644 index 360906e..0000000 --- a/workflows/build_linux.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Create Binaries for Linux - -on: - push: - tags: - - '*linux' - - -jobs: - deploy: - - runs-on: ubuntu-20.04 - - steps: - - uses: actions/checkout@v3 - with: - lfs: true - - name: Set up Python - uses: actions/setup-python@v3 - with: - python-version: '3.10' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Build binary - run: pyinstaller --onefile starrem2k13.py -i starrem.ico - - name: list files - run: ls -alh dist/ - - name: create tar.gz - run: | - cp -r weights dist/weights - cp LICENSE dist/ - cp releasenotes.md dist/ - tar -czvf starrem2k13_ubuntu_20.04.tar.gz dist/* - - uses: ncipollo/release-action@v1 - with: - artifacts: "starrem2k13_ubuntu_20.04.tar.gz" - bodyFile: "releasenotes.md" diff --git a/workflows/build_macos.yml b/workflows/build_macos.yml deleted file mode 100644 index 7615f76..0000000 --- a/workflows/build_macos.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Create Binaries for MacOS - -on: - push: - tags: - - '*macos' - - -jobs: - deploy: - - runs-on: macos-12 - - steps: - - uses: actions/checkout@v3 - with: - lfs: true - - name: Set up Python - uses: actions/setup-python@v3 - with: - python-version: '3.10' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Build binary - run: pyinstaller --onefile starrem2k13.py -i starrem.ico - - name: list files - run: ls -alh dist/ - - name: create tar.gz - run: | - cp -r weights dist/weights - cp LICENSE dist/ - cp releasenotes.md dist/ - tar -czvf starrem2k13_macos_12.tar.gz dist/* - - uses: ncipollo/release-action@v1 - with: - artifacts: "starrem2k13_macos_12.tar.gz" - bodyFile: "releasenotes.md" diff --git a/workflows/build_windows.yml b/workflows/build_windows.yml deleted file mode 100644 index 46f48ec..0000000 --- a/workflows/build_windows.yml +++ /dev/null @@ -1,44 +0,0 @@ - -name: Create Binaries for Windows - -on: - push: - tags: - - '*win' - - -jobs: - deploy: - - runs-on: windows-2019 - - steps: - - uses: actions/checkout@v3 - with: - lfs: true - - name: Set up Python - uses: actions/setup-python@v3 - with: - python-version: '3.6' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Build binary - run: pyinstaller --onefile starrem2k13.py -i starrem.ico - - name: copy weights - run: xcopy weights\* dist\weights\ /E - - name: copy other files - run: | - xcopy LICENSE dist\ /E - xcopy releasenotes.md dist\ /E - - uses: thedoctor0/zip-release@main - with: - type: 'zip' - filename: 'starrem2k13_win.zip' - directory: 'dist/' - exclusions: '*.git* /*node_modules/* .editorconfig' - - uses: ncipollo/release-action@v1 - with: - artifacts: "dist/starrem2k13_win.zip" - bodyFile: "releasenotes.md"