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