Skip to content

Commit

Permalink
Removing branch prefix for artifact tag
Browse files Browse the repository at this point in the history
Internal script not changed immediately hence keeping artifact part same as current.
Also once internal script logic implemented to handle reading tags from .env files directly, will no longer need artifacts.
  • Loading branch information
Mahadik, Mukul Chandrakant authored and Mahadik, Mukul Chandrakant committed Sep 21, 2024
1 parent 47e1be3 commit 2c8d4de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/image_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ jobs:
- name: Create artifact text files
run: |
if [ "${{ github.event_name }}" == "push" ]; then
echo ${GITHUB_REF##*/}_${{ steps.date.outputs.date }} > frontend_tag_file.txt
echo ${{ steps.date.outputs.date }} > frontend_tag_file.txt
else
echo ${{ steps.set-tags.outputs.PUBLIC_DASH_FRONTEND_IMAGE_TAG }} > frontend_tag_file.txt
fi
echo ${GITHUB_REF##*/}_${{ steps.date.outputs.date }} > notebook_tag_file.txt
echo ${{ steps.date.outputs.date }} > notebook_tag_file.txt
echo "Created tag text files"
- name: Upload Frontend Tag Artifact
Expand Down

0 comments on commit 2c8d4de

Please sign in to comment.