-
Notifications
You must be signed in to change notification settings - Fork 12
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: use additional tag on push #68
Conversation
👋 Thanks for opening this PR! The Cookbook will be automatically built with GitHub Actions. To see the status of your deployment, click below. |
@@ -27,6 +27,9 @@ on: | |||
permissions: | |||
contents: read | |||
|
|||
env: | |||
DOCKER_TAG: pr_68 |
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.
Enter the number of the current pull request.
@@ -24,6 +24,9 @@ on: | |||
default: 'true' | |||
type: string # had a lot of trouble with boolean types, see https://github.com/actions/runner/issues/1483 | |||
|
|||
env: | |||
DOCKER_TAG: pr_68 |
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.
Same here.
@@ -1 +1 @@ | |||
FROM ghcr.io/openradar/erad2024:d6ee5b14f782 | |||
FROM ghcr.io/openradar/erad2024:pr_68 |
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.
Same here. This will make sure, that the image which is build on push to main is used in subsequent pythia-binder instances.
On building the pullrequest image, we see that the tagging worked.
Let's check this on push. |
@openradar/erad2024-team
To keep the pythia-binder up to date, we need to tag the build image with some new tag and use this tag in the
binder/Dockerfile
. To be on the safe side, we can apply a tag which corresponds to the PR number.