Skip to content
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

Add latest python also for coffea 0.7 #50

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ env:
GITHUB_REF: ${{ github.ref }}
# Update each time there is added latest python: it will be used for `latest` tag
python_latest: "3.11"
python_latestv0: "3.10"
# For coffea 2024.x.x we have conda release, github CI bot will detect new version and open PR with changes
release: "2024.11.0"
# For coffea 0.7.23 we dont have conda release, please update it manually
releasev0: "0.7.23"

jobs:
Expand Down Expand Up @@ -99,13 +102,13 @@ jobs:
fi
tags=${image}:latest-py${python},$tag
# latest tag
if [ ${python} == ${python_latest} ]; then
if [ ${python} == ${python_latest} ] || [ "$python" == ${python_latestv0} ]; then
tags=${image}:latest,$tags
fi
else
tag="${image}:dev-py${python}"
tags=$tag
if [ "$python" == ${python_latest} ]; then
if [ "$python" == ${python_latest} ] || [ "$python" == ${python_latestv0} ]; then
tags=${image}:dev,$tags
fi
fi
Expand Down
Loading