Skip to content

Commit

Permalink
Update workflow to reference new repository name
Browse files Browse the repository at this point in the history
(the repo was moved from the "opensciencegrid" org to the "osg-htc" org)
  • Loading branch information
matyasselmeci committed Sep 25, 2024
1 parent dc48a8f commit 07bf21f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-sw-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
make-date-tag:
runs-on: ubuntu-latest
if: startsWith(github.repository, 'opensciencegrid/')
if: startsWith(github.repository, 'osg-htc/')
outputs:
dtag: ${{ steps.mkdatetag.outputs.dtag }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:
build:
runs-on: ubuntu-latest
needs: [make-date-tag]
if: startsWith(github.repository, 'opensciencegrid/')
if: startsWith(github.repository, 'osg-htc/')
strategy:
fail-fast: False
matrix:
Expand All @@ -36,7 +36,7 @@ jobs:
REPO: ${{ matrix.repo }}
TIMESTAMP: ${{ needs.make-date-tag.outputs.dtag }}
run: |
docker_repo=${GITHUB_REPOSITORY/opensciencegrid\/docker-/opensciencegrid/}
docker_repo=${GITHUB_REPOSITORY/osg-htc\/docker-/opensciencegrid/}
tag_list=()
for registry in hub.opensciencegrid.org docker.io; do
for image_tag in "$REPO" "$REPO-$TIMESTAMP"; do
Expand Down

0 comments on commit 07bf21f

Please sign in to comment.