From 7aa5a7db50a82d48ded5621fa790a7a91c0e26f5 Mon Sep 17 00:00:00 2001 From: eaudetcobello Date: Wed, 22 May 2024 17:58:32 -0400 Subject: [PATCH] Move to sh file --- .github/workflows/sync-registry.yaml | 2 +- build-scripts/hack/sync-registry.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100755 build-scripts/hack/sync-registry.sh diff --git a/.github/workflows/sync-registry.yaml b/.github/workflows/sync-registry.yaml index 503ac07a5..d09e8c2c0 100644 --- a/.github/workflows/sync-registry.yaml +++ b/.github/workflows/sync-registry.yaml @@ -20,4 +20,4 @@ jobs: USERNAME: ${{ github.actor }} TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - regsync once --config ${GITHUB_WORKSPACE}/build-scripts/hack/sync-registry.yaml + ${GITHUB_WORKSPACE}/build-scripts/hack/sync-registry.sh diff --git a/build-scripts/hack/sync-registry.sh b/build-scripts/hack/sync-registry.sh new file mode 100755 index 000000000..38ab5504b --- /dev/null +++ b/build-scripts/hack/sync-registry.sh @@ -0,0 +1 @@ +regsync once --config ./sync-registry.yaml