From fc56992d35b9808531b7fad6bb3b6cb1f3061b76 Mon Sep 17 00:00:00 2001 From: Sergey Nazarov Date: Tue, 1 Oct 2024 13:50:14 +0300 Subject: [PATCH] wip --- .github/workflows/build-packages.yml | 49 ---------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/build-packages.yml diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml deleted file mode 100644 index bf3c99b88d..0000000000 --- a/.github/workflows/build-packages.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Publish packages - -on: - workflow_dispatch: - inputs: - dockerTag: - description: 'Docker tag' - required: false - type: string - buildDEBPackages: - description: 'Build DEB packages' - type: boolean - default: true - network: - description: 'Network' - type: choice - default: mainnet - options: - - mainnet - - testnet - - stagenet - -env: - IMAGE_NAME: ghcr.io/${{ github.repository }} - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - attestations: write - id-token: write - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: '11' - cache: 'sbt' - - if: ${{ inputs.buildDEBPackages }} - run: sbt -Dnetwork=${{ inputs.network }} --mem 4096 --batch buildDEBPackages - - uses: actions/upload-artifact@v4 - if: ${{ inputs.buildDEBPackages }} - with: - name: crashes - path: | - node/target/*.deb - grpc-server/target/*.deb