Skip to content

Commit

Permalink
Remove pre-release extras
Browse files Browse the repository at this point in the history
  • Loading branch information
CannonLock committed Oct 15, 2024
1 parent ab18ad1 commit b58dcbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-prod-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
# if the workflow was for the release
- name: Log in to OSG Harbor
uses: docker/login-action@v3
if: github.repository == 'PelicanPlatform/pelican'
if: github.repository == 'PelicanPlatform/pelican' && startsWith(github.ref, 'refs/tags/')
with:
registry: hub.opensciencegrid.org
username: ${{ secrets.PELICAN_HARBOR_ROBOT_USER }}
Expand All @@ -174,7 +174,7 @@ jobs:
with:
context: .
file: ./images/Dockerfile
push: ${{ github.repository == 'PelicanPlatform/pelican' }}
push: ${{ github.repository == 'PelicanPlatform/pelican' && startsWith(github.ref, 'refs/tags/') }}
tags: "${{ steps.generate-tag-list.outputs.taglist }}"
target: ${{ matrix.image }}
build-args: |
Expand Down

0 comments on commit b58dcbe

Please sign in to comment.