Skip to content

Commit

Permalink
Add artifact
Browse files Browse the repository at this point in the history
Adding artifact upload for internal repo to be able to pull image tag.
  • Loading branch information
nataliejschultz committed May 26, 2024
1 parent f14b38a commit f7f9319
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/image_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,16 @@ jobs:
- name: push docker image
run: |
docker push $DOCKER_USER/${GITHUB_REPOSITORY#*/}:${GITHUB_REF##*/}_${{ steps.date.outputs.date }}
- name: Create artifact text file
run: |
echo ${{ steps.date.outputs.date }} > admin_dash_tag_file.txt
echo "Created tag text file"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: admin-dash-image-tag
path: admin_dash_tag_file.txt
overwrite: true

0 comments on commit f7f9319

Please sign in to comment.