From bef99162fe0d66e2c9fbf6421a69ca8ec2ac8f55 Mon Sep 17 00:00:00 2001 From: Dennis Schwerdel Date: Thu, 21 Mar 2024 14:15:55 +0100 Subject: [PATCH] Remove github package workflow --- .github/workflows/package.yml | 59 ----------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .github/workflows/package.yml diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml deleted file mode 100644 index e45528b..0000000 --- a/.github/workflows/package.yml +++ /dev/null @@ -1,59 +0,0 @@ -on: - release: - types: [created] -name: Build packages -jobs: - deb: - name: "Build deb packages" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run builder - uses: ./.github/actions/build-deb - - name: Archive artifacts - uses: actions/upload-artifact@v1 - with: - name: packages - path: dist - - name: Upload artifacts - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - args: 'dist/*.deb' - rpm: - name: "Build rpm packages" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run builder - uses: ./.github/actions/build-rpm - - name: Archive artifacts - uses: actions/upload-artifact@v1 - with: - name: packages - path: dist - - name: Upload artifacts - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - args: 'dist/*.rpm' - static: - name: "Build static binaries" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run builder - uses: ./.github/actions/build-static - - name: Archive artifacts - uses: actions/upload-artifact@v1 - with: - name: packages - path: dist - - name: Upload artifacts - uses: skx/github-action-publish-binaries@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - args: 'dist/*' \ No newline at end of file