Skip to content

Commit 2c8d4de

Browse files
Mahadik, Mukul ChandrakantMahadik, Mukul Chandrakant
authored andcommitted
Removing branch prefix for artifact tag
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.
1 parent 47e1be3 commit 2c8d4de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/image_build_push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ jobs:
9595
- name: Create artifact text files
9696
run: |
9797
if [ "${{ github.event_name }}" == "push" ]; then
98-
echo ${GITHUB_REF##*/}_${{ steps.date.outputs.date }} > frontend_tag_file.txt
98+
echo ${{ steps.date.outputs.date }} > frontend_tag_file.txt
9999
else
100100
echo ${{ steps.set-tags.outputs.PUBLIC_DASH_FRONTEND_IMAGE_TAG }} > frontend_tag_file.txt
101101
fi
102-
echo ${GITHUB_REF##*/}_${{ steps.date.outputs.date }} > notebook_tag_file.txt
102+
echo ${{ steps.date.outputs.date }} > notebook_tag_file.txt
103103
echo "Created tag text files"
104104
105105
- name: Upload Frontend Tag Artifact

0 commit comments

Comments
 (0)