Skip to content

Commit 0d5e346

Browse files
Merge pull request #105 from Rajesh-Nagarajan-11/sample-tes
TEST PR
2 parents 525a2de + 9dfcc3b commit 0d5e346

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: bash ./script.sh
2424

2525
- name: Upload files
26-
uses: actions/upload-artifact@master
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: public-dir
2929
path: ./public-dir.zip

.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

0 commit comments

Comments
 (0)