Skip to content

Commit

Permalink
Do not build date tags
Browse files Browse the repository at this point in the history
  • Loading branch information
rynge committed Jul 11, 2023
1 parent 8ef9705 commit 5e07e80
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,18 @@ jobs:
matrix:
image: ${{ fromJson(needs.build-image-list.outputs.images) }}
steps:

- name: Container Registry Login
uses: docker/login-action@v2
with:
registry: hub.opensciencegrid.org
username: ${{ secrets.OSG_HARBOR_ROBOT_USER }}
password: ${{ secrets.OSG_HARBOR_ROBOT_PASSWORD }}

- name: Build ${{ matrix.image }}
uses: opensciencegrid/build-container-action@v0.6.0
uses: docker/build-push-action@v3.2.0
with:
context: ${{ matrix.image }}
output_image: ${{ matrix.image }}
tags: ${{ matrix.image }}
push_image: true
registry_url: hub.opensciencegrid.org
registry_user: ${{ secrets.OSG_HARBOR_ROBOT_USER }}
registry_pass: ${{ secrets.OSG_HARBOR_ROBOT_PASSWORD }}

0 comments on commit 5e07e80

Please sign in to comment.