From 21f3ae45d3eb2cd4223f13d9beee27867c4ff6e1 Mon Sep 17 00:00:00 2001 From: Mbucari <37587114+Mbucari@users.noreply.github.com> Date: Sun, 12 Feb 2023 22:25:39 -0700 Subject: [PATCH] Delete deb.yml --- .github/workflows/deb.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/deb.yml diff --git a/.github/workflows/deb.yml b/.github/workflows/deb.yml deleted file mode 100644 index 3557b629..00000000 --- a/.github/workflows/deb.yml +++ /dev/null @@ -1,38 +0,0 @@ -# deb.yml -# Reusable workflow that builds the Linux Debian package. ---- -name: deb - -on: - workflow_call: - inputs: - version: - type: string - description: 'Version number' - required: true - -env: - FILE_NAME: "Libation.${{ inputs.version }}-linux-chardonnay" - -jobs: - build_deb: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Download Artifact - uses: actions/download-artifact@v3 - with: - name: "${{ env.FILE_NAME }}.tar.gz" - - - name: Build .deb - id: deb - run: | - ./Scripts/targz2deb.sh "${{ env.FILE_NAME }}.tar.gz" ${{ inputs.version }} - - - name: Publish .deb - uses: actions/upload-artifact@v3 - with: - name: ${{ env.FILE_NAME }}.deb - path: ${{ env.FILE_NAME }}.deb - if-no-files-found: error