diff --git a/.github/workflows/api-breaking-changes.yml b/.github/workflows/api-breaking-changes.yml index 4a470290cd..12fda469ee 100644 --- a/.github/workflows/api-breaking-changes.yml +++ b/.github/workflows/api-breaking-changes.yml @@ -41,9 +41,9 @@ jobs: run: | yarn backstage-repo-tools repo schema openapi check --since origin/${{ github.base_ref }} > comment.md - - name: clone github events.json to local path + - name: clone artifacts to current directory run: | - cat ${{ github.event_path }} > events.json + cat ${{ github.event_path }} > event.json - name: Upload Artifacts uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4 @@ -51,7 +51,7 @@ jobs: name: preview-spec path: | comment.md - events.json + event.json retention-days: 2 overwrite: true diff --git a/.github/workflows/uffizzi-build.yml b/.github/workflows/uffizzi-build.yml index b981b46e0a..95a4fa2e11 100644 --- a/.github/workflows/uffizzi-build.yml +++ b/.github/workflows/uffizzi-build.yml @@ -98,17 +98,18 @@ jobs: kustomize build . > manifests.rendered.yml cat manifests.rendered.yml - - name: clone github events.json locally + - name: clone artifacts into current directory run: | - cat ${{ github.event_path }} > events.json + cat ${{ github.event_path }} > event.json + cp ./.github/uffizzi/k8s/manifests/manifests.rendered.yml manifests.rendered.yml - name: Upload Artifacts uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4 with: name: preview-spec path: | - ./.github/uffizzi/k8s/manifests/manifests.rendered.yml - events.json + manifests.rendered.yml + event.json retention-days: 2 overwrite: true