workflow: stage all files into top level zip dir

Signed-off-by: aramissennyeydd <aramis.sennyey@doordash.com>
This commit is contained in:
aramissennyeydd
2024-05-27 22:29:18 -04:00
parent 50a608a7d9
commit 89e2ddf215
2 changed files with 8 additions and 7 deletions
+3 -3
View File
@@ -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
+5 -4
View File
@@ -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