From 94516c9ea6505942790f2c0879ed00770700a820 Mon Sep 17 00:00:00 2001 From: Fernando Cainelli Date: Sun, 23 Jun 2024 20:28:09 -0300 Subject: [PATCH] remove wrong file Signed-off-by: Fernando Cainelli --- .github/.workflows/build.yml | 37 ------------------------------------ 1 file changed, 37 deletions(-) delete mode 100644 .github/.workflows/build.yml diff --git a/.github/.workflows/build.yml b/.github/.workflows/build.yml deleted file mode 100644 index 7a942fe7456..00000000000 --- a/.github/.workflows/build.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: build -on: - push: {} # TODO: fix before merge - pull_request: {} -concurrency: ${{ github.ref }} -permissions: - contents: read - id-token: write - -jobs: - build: - runs-on: [gyg-gha-runner-16x64] - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} # TODO: use a GYG registry - password: ${{ secrets.DOCKERHUB_TOKEN }} # TODO: use a GYG registry - - - name: Build and push - uses: docker/build-push-action@v6 - with: - pull: true - file: tools/router-check-tool/Dockerfile - context: . - platforms: linux/amd64,linux/arm64 - push: ${{ startsWith(github.ref_name, 'release-') && github.event_name == 'push'}} - tags: cainelli/router_check_tool:${{ github.ref_name }}