Skip to content

Commit 9dfcc3b

Browse files
fix paths
Signed-off-by: Rajesh-Nagarajan-11 <[email protected]>
1 parent 6b81417 commit 9dfcc3b

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build-and-preview-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Upload files
2626
uses: actions/upload-artifact@v4
2727
with:
28-
name: site-dir
28+
name: public-dir
2929
path: ./public-dir.zip
3030
retention-days: 1
3131
- name: Trigger Inner workflow

.github/workflows/preview-site.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
- name: Download Site dir
1818
uses: actions/download-artifact@v4
1919
with:
20-
name: site-dir
20+
name: public-dir
2121
github-token: ${{ secrets.RELEASE_NOTES_PATN }}
2222
repository: ${{ github.event.workflow_run.repository.full_name }}
2323
run-id: ${{ github.event.workflow_run.id }}
2424

2525
- name: Unzip Site
2626
run: |
2727
rm -rf ./docs/_site
28-
unzip site-dir.zip
29-
rm -f site-dir.zip
28+
unzip public-dir.zip
29+
rm -f public-dir.zip
3030
3131
- name: Deploy to Netlify
3232
id: netlify

SECURITY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# Meshery Security
22

33
See the https://github.com/meshery/meshery repository [SECURITY.md document](https://github.com/meshery/meshery/blob/master/SECURITY.md), which defines governance policies for the Meshery project.
4-

0 commit comments

Comments
 (0)