From 854c9a45474cdac405dc262b3eb577dd03ec6318 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Date: Thu, 6 Feb 2025 19:00:14 +0500 Subject: [PATCH] Remove failing deb action --- .github/workflows/ci.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 9bcba4a..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: CI - -on: [push] - -jobs: - build-deb: - runs-on: ubuntu-latest - container: - image: ghcr.io/truenas/middleware:master - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup dev environment - run: /usr/bin/install-dev-tools - - - name: Install Dependencies - run: apt update && apt install -y debhelper-compat dh-python python3-dev python3-setuptools devscripts - - - name: Build deb package - run: > - dpkg-buildpackage - -B - --no-sign - -jauto - - - name: Create artifacts dir - run: mkdir artifacts - if: success() - - - name: Move artifacts - run: mv ../*.deb artifacts - if: success() - - - uses: actions/upload-artifact@v4 - with: - name: python3-ixdiagnose - path: artifacts - if: success()