Skip to content

Commit

Permalink
hack to prevent osg build action from auto-tagging image
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphall committed Sep 26, 2024
1 parent 0adbc7d commit 299a454
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/build-container-local/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ runs:
BASE_OS=${{ inputs.base_os }}
BASE_OSG_SERIES=${{ inputs.osg_series }}
TIMESTAMP_IMAGE=${{ steps.generate-tags.outputs.ts_image }}
tags: ${{ steps.generate-tags.outputs.tag_list }}
#tags: ${{ steps.generate-tags.outputs.tag_list }}
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
outputs: type=image,name=${{ inputs.output_image }},push-by-digest=true,name-canonical=true,push=true

- name: Cache Docker images
if: success() && fromJSON(inputs.cache_image)
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
osg_series: ['23']
# repo: ['development', 'testing', 'release']
repo: [ 'release' ]
platform: ['linux/amd64','linux/arm64']
platform: ['linux/amd64']
# platform: ['linux/amd64','linux/arm64']
exclude:
# cuda builds take a super long time; only do one of them
- os: cuda_11_8_0
Expand Down

0 comments on commit 299a454

Please sign in to comment.