Skip to content

Commit

Permalink
[.github] fix path associated with push-main.yml and skopeo sync
Browse files Browse the repository at this point in the history
Oops, the path wasn't absolute in the step, and now that we're using a bind mount, this would help a lot.

Relates to WKS-306
  • Loading branch information
kylos101 committed Jul 13, 2023
1 parent b8553af commit 9263f37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
#/bin/bash
PROMOTE_IMAGES=$(mktemp -d)
cp .github/promote-images.yml "${PROMOTE_IMAGES}"
cp "${GITHUB_WORKSPACE}/.github/promote-images.yml" "${PROMOTE_IMAGES}"
docker run --rm \
-v "${SKOPEO_AUTH_DIR}":/skopeo.auth \
Expand Down Expand Up @@ -200,4 +200,4 @@ jobs:
sudo -E skopeo sync \
--src yaml \
--dest docker \
.github/promote-images.yml "${DH_IMAGE_REGISTRY}/gitpod"
/.github/promote-images.yml "${DH_IMAGE_REGISTRY}/gitpod"

0 comments on commit 9263f37

Please sign in to comment.