From 5ba1419c7789eca5d8c3d94ed8fcd602e646ca98 Mon Sep 17 00:00:00 2001 From: Karel Suta Date: Mon, 3 Jun 2024 13:10:13 +0200 Subject: [PATCH] Delete Pytorch MNIST sample image GitHub workflow --- .github/workflows/mnist-job-test-image.yml | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/mnist-job-test-image.yml diff --git a/.github/workflows/mnist-job-test-image.yml b/.github/workflows/mnist-job-test-image.yml deleted file mode 100644 index 02c4b5c7e..000000000 --- a/.github/workflows/mnist-job-test-image.yml +++ /dev/null @@ -1,36 +0,0 @@ -# This workflow will build the MNIST job test image and push it to the project-codeflare image registry - -name: MNIST Job Test Image - -on: - workflow_dispatch: - push: - branches: - - main - paths: - - 'test/pytorch_mnist_image/**' - -jobs: - push: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set Go - uses: actions/setup-go@v5 - with: - go-version-file: './go.mod' - - - name: Login to Quay.io - id: podman-login-quay - run: | - podman login --username ${{ secrets.QUAY_ID }} --password ${{ secrets.QUAY_TOKEN }} quay.io - - - name: Image Build and Push - run: | - make image-mnist-job-test-push - - - name: Logout from Quay.io - if: always() && steps.podman-login-quay.outcome == 'success' - run: | - podman logout quay.io