From d799254fe3af991b6eb088316d64f8dbcfbec7bd Mon Sep 17 00:00:00 2001 From: "Mahadik, Mukul Chandrakant" Date: Mon, 23 Sep 2024 14:42:10 -0700 Subject: [PATCH] Task A-2: Removed artifact upload ; internal script updated Internal script updated as well. Internal PR must be merged as well once these external PR changes merged. --- .github/workflows/image_build_push.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/image_build_push.yml b/.github/workflows/image_build_push.yml index f028e14..93e8ba8 100644 --- a/.github/workflows/image_build_push.yml +++ b/.github/workflows/image_build_push.yml @@ -91,27 +91,3 @@ jobs: git commit -m "Updated docker image tags in .env file to the latest timestamp" git push origin fi - - - name: Create artifact text files - run: | - if [ "${{ github.event_name }}" == "push" ]; then - echo ${{ steps.date.outputs.date }} > frontend_tag_file.txt - else - echo ${{ steps.set-tags.outputs.PUBLIC_DASH_FRONTEND_IMAGE_TAG }} | cut -d'_' -f2 > frontend_tag_file.txt - fi - echo ${{ steps.date.outputs.date }} > notebook_tag_file.txt - echo "Created tag text files" - - - name: Upload Frontend Tag Artifact - uses: actions/upload-artifact@v4 - with: - name: frontend-image-tag - path: frontend_tag_file.txt - overwrite: true - - - name: Upload Notebook Tag Artifact - uses: actions/upload-artifact@v4 - with: - name: notebook-image-tag - path: notebook_tag_file.txt - overwrite: true