From 67bd1017dc8e4b247e50adee93b6f0768ebacc06 Mon Sep 17 00:00:00 2001 From: paychex-ssmithrand <108530706+paychex-ssmithrand@users.noreply.github.com> Date: Wed, 6 Dec 2023 09:14:42 -0500 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 38 ------------------------------------- 1 file changed, 38 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 a2131c4b985..00000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Linux_Container_Workflow - -on: - workflow_dispatch: - -env: - RUNNER_VERSION: 2.293.0 - -jobs: - build-and-push: - runs-on: ubuntu-latest - steps: - # checkout the repo - - name: 'Checkout GitHub Action' - uses: actions/checkout@main - - - name: 'Login via Azure CLI' - uses: azure/login@v1 - with: - creds: ${{ secrets.AZURE_CREDENTIALS }} - - - name: 'Build GitHub Runner container image' - uses: azure/docker-login@v1 - with: - login-server: ${{ secrets.REGISTRY_LOGIN_SERVER }} - username: ${{ secrets.REGISTRY_USERNAME }} - password: ${{ secrets.REGISTRY_PASSWORD }} - - run: | - docker build --build-arg RUNNER_VERSION=${{ env.RUNNER_VERSION }} -t ${{ secrets.REGISTRY_LOGIN_SERVER }}/pwd9000-github-runner-lin:${{ env.RUNNER_VERSION }} . - - - name: 'Push container image to ACR' - uses: azure/docker-login@v1 - with: - login-server: ${{ secrets.REGISTRY_LOGIN_SERVER }} - username: ${{ secrets.REGISTRY_USERNAME }} - password: ${{ secrets.REGISTRY_PASSWORD }} - - run: | - docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/pwd9000-github-runner-lin:${{ env.RUNNER_VERSION }}