From d5908b0e6b598acc572e0da91920c8e89ea9420e Mon Sep 17 00:00:00 2001 From: eaudetcobello Date: Mon, 27 May 2024 10:17:35 -0400 Subject: [PATCH] Move config file out of .github --- {.github/data => build-scripts/hack}/sync-registry-config.yaml | 0 build-scripts/hack/sync-registry.sh | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {.github/data => build-scripts/hack}/sync-registry-config.yaml (100%) diff --git a/.github/data/sync-registry-config.yaml b/build-scripts/hack/sync-registry-config.yaml similarity index 100% rename from .github/data/sync-registry-config.yaml rename to build-scripts/hack/sync-registry-config.yaml diff --git a/build-scripts/hack/sync-registry.sh b/build-scripts/hack/sync-registry.sh index 09b8a1356..c4cceab36 100755 --- a/build-scripts/hack/sync-registry.sh +++ b/build-scripts/hack/sync-registry.sh @@ -1,6 +1,6 @@ #!/bin/bash -docker run -v "${GITHUB_WORKSPACE}/.github/data/sync-registry-config.yaml":/config.yaml quay.io/skopeo/stable:v1.15 sync \ +docker run -v "./sync-registry-config.yaml":/config.yaml quay.io/skopeo/stable:v1.15 sync \ --src yaml \ --dest docker \ /config.yaml ghcr.io/canonical \