Skip to content

Commit 7aab742

Browse files
authored
Merge pull request #9763 from Lyndon-Li/fix-docker-hub-push-error
Fix docker hub push error
2 parents f72c57b + 7918cb3 commit 7aab742

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pr-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ jobs:
3232
# by push, so BRANCH and TAG are empty by default. docker-push.sh will
3333
# only build Velero image without pushing.
3434
- name: Make Velero container without pushing to registry.
35-
if: github.repository == 'vmware-tanzu/velero'
35+
if: github.repository == 'velero-io/velero'
3636
run: |
3737
./hack/docker-push.sh

.github/workflows/pr-filepath-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
else:
8585
print(f' # {original} — cannot auto-suggest rename (non-UTF-8)')
8686
print()
87-
print('See https://github.com/vmware-tanzu/velero/pull/9552 for context.')
87+
print('See https://github.com/velero-io/velero/pull/9552 for context.')
8888
sys.exit(1)
8989
else:
9090
print('All file paths are valid for Go module zip.')

.github/workflows/pr-goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Checkout
1919

2020
- name: Verify .goreleaser.yml and try a dryrun release.
21-
if: github.repository == 'vmware-tanzu/velero'
21+
if: github.repository == 'velero-io/velero'
2222
run: |
2323
CHANGELOG=$(ls changelogs | sort -V -r | head -n 1)
2424
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} \

.github/workflows/push-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
# Only try to publish the container image from the root repo; forks don't have permission to do so and will always get failures.
3030
- name: Publish container image
31-
if: github.repository == 'vmware-tanzu/velero'
31+
if: github.repository == 'velero-io/velero'
3232
run: |
3333
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASSWORD }}
3434

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
verbose: true
5353
# Only try to publish the container image from the root repo; forks don't have permission to do so and will always get failures.
5454
- name: Publish container image
55-
if: github.repository == 'vmware-tanzu/velero'
55+
if: github.repository == 'velero-io/velero'
5656
run: |
5757
sudo swapoff -a
5858
sudo rm -f /mnt/swapfile

0 commit comments

Comments
 (0)