From 225570f049af36ab891db37ffb6b4d7479195270 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Sun, 20 Oct 2024 10:43:02 -0400 Subject: [PATCH] cd ./score-*/ --- .github/workflows/release.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9622d2b..2175e6e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,5 +15,9 @@ jobs: echo ${{ secrets.GITHUB_TOKEN }} | oras login ghcr.io -u ${{ github.actor }} --password-stdin - name: oras push run: | - oras push ghcr.io/${{ github.repository_owner }}/score-compose-community-provisioners:${{ github.ref_name }} $(ls ./score-compose/) - oras push ghcr.io/${{ github.repository_owner }}/score-k8s-community-provisioners:${{ github.ref_name }} $(ls ./score-k8s/) \ No newline at end of file + cd ./score-compose/ + oras push ghcr.io/${{ github.repository_owner }}/score-compose-community-provisioners:${{ github.ref_name }} $(ls) + - name: oras push + run: | + cd ./score-k8s/ + oras push ghcr.io/${{ github.repository_owner }}/score-k8s-community-provisioners:${{ github.ref_name }} $(ls) \ No newline at end of file