-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for redesigned CI/CD pipeline failure #144
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
FRONTEND_IMAGE_TAG= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,34 +27,21 @@ jobs: | |
- name: Set docker image tag from .env file | ||
run: | | ||
set -a; source .env; set +a | ||
echo "Restoring latest server image tag from .env" | ||
echo "DOCKER_TAG_FROM_PUSH=${SERVER_IMAGE_TAG}" >> $GITHUB_ENV | ||
|
||
- name: Set docker image tag from .env.repoTags file | ||
run: | | ||
set -a; source .env.repoTags; set +a | ||
echo "Restoring latest frontend image tag from .env.repoTags" | ||
echo "FRONTEND_IMAGE_TAG=${FRONTEND_IMAGE_TAG}" >> $GITHUB_ENV | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not going to insist on this, but we should revisit this as part of " Consider switching from $GITHUB_ENV to step outputs. I think that the step outputs are the recommended approach to pass values from one step to another, but we should verify" |
||
|
||
- name: Print input docker image tag | ||
run: | | ||
echo "Event name: ${{ github.event_name }}" | ||
echo "Latest docker image tag (push): ${{ env.DOCKER_TAG_FROM_PUSH }}" | ||
echo "Latest docker image tag (workflow_dispatch): ${{ env.DOCKER_TAG_FROM_WORKFLOW_DISPATCH }}" | ||
|
||
- name: Update .env file | ||
run: | | ||
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | ||
echo "Workflow_dispatch: New server image built and pushed, Updating image tag in .env" | ||
echo "SERVER_IMAGE_TAG=$DOCKER_TAG_FROM_WORKFLOW_DISPATCH" > .env | ||
else | ||
echo "Push event: Restoring latest server image tag from .env" | ||
fi | ||
|
||
- name: Add, Commit, Push changes to .env file | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Github Actions bot to update .env with latest tags" | ||
if git diff --quiet; then | ||
echo "Latest timestamp already present in .env file, no changes to commit" | ||
else | ||
git add .env | ||
git commit -m "Updated docker image tag in .env file to the latest timestamp" | ||
git push origin | ||
fi | ||
echo "Current frontend image tag (push): ${{ env.FRONTEND_IMAGE_TAG }}" | ||
|
||
- name: docker login | ||
run: | # log into docker hub account | ||
|
@@ -79,25 +66,57 @@ jobs: | |
- name: rename docker images | ||
run: | | ||
if [ "${{ github.event_name }}" == "push" ]; then | ||
docker image tag em-pub-dash/frontend:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}_frontend:${GITHUB_REF##*/}_${{ steps.date.outputs.date }} | ||
docker image tag em-pub-dash-prod/frontend:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}_frontend:${GITHUB_REF##*/}_${{ steps.date.outputs.date }} | ||
echo "FRONTEND_IMAGE_TAG=${{ steps.date.outputs.date }}" >> $GITHUB_ENV | ||
fi | ||
docker image tag em-pub-dash/viz-scripts:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}_notebook:${GITHUB_REF##*/}_${{ steps.date.outputs.date }} | ||
docker image tag em-pub-dash-prod/viz-scripts:latest $DOCKER_USER/${GITHUB_REPOSITORY#*/}_notebook:${GITHUB_REF##*/}_${{ steps.date.outputs.date }} | ||
echo "NOTEBOOK_IMAGE_TAG=${{ steps.date.outputs.date }}" >> $GITHUB_ENV | ||
|
||
- name: push docker images | ||
run: | | ||
if [ "${{ github.event_name }}" == "push" ]; then | ||
docker push $DOCKER_USER/${GITHUB_REPOSITORY#*/}_frontend:${GITHUB_REF##*/}_${{ steps.date.outputs.date }} | ||
fi | ||
docker push $DOCKER_USER/${GITHUB_REPOSITORY#*/}_notebook:${GITHUB_REF##*/}_${{ steps.date.outputs.date }} | ||
|
||
- name: Update .env file | ||
run: | | ||
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | ||
echo "Workflow_dispatch: New server image built and pushed, Updating image tag in .env" | ||
echo "SERVER_IMAGE_TAG=$DOCKER_TAG_FROM_WORKFLOW_DISPATCH" > .env | ||
else | ||
echo "Push event: New frontend image built and pushed, Updating image tag in .env.repoTags" | ||
echo "FRONTEND_IMAGE_TAG=${{ steps.date.outputs.date }}" > .env.repoTags | ||
fi | ||
|
||
- name: Add, Commit, Push changes to .env file | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Github Actions bot to update .env with latest tags" | ||
if git diff --quiet; then | ||
echo "Latest timestamps already present in .env files, no changes to commit" | ||
else | ||
git add .env .env.repoTags | ||
git commit -m "Updated docker image tags in .env files to the latest timestamps" | ||
git push origin | ||
fi | ||
|
||
- name: Create a text file | ||
- name: Create tag files | ||
run: | | ||
echo ${{ steps.date.outputs.date }} > public_dash_tag_file.txt | ||
echo "Created tag text file" | ||
echo ${{ env.FRONTEND_IMAGE_TAG }} > frontend_tag_file.txt | ||
echo ${{ env.NOTEBOOK_IMAGE_TAG }} > notebook_tag_file.txt | ||
echo "Created tag text files" | ||
|
||
- name: Upload Artifact | ||
- 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: public-dash-image-tag | ||
path: public_dash_tag_file.txt | ||
overwrite: true | ||
name: notebook-image-tag | ||
path: notebook_tag_file.txt | ||
overwrite: true |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not going to insist on this right now, but as part of e-mission/e-mission-docs#1082, we should consider putting the notebook tag in here as well, and just using this instead of the artifacts