Skip to content

Commit

Permalink
♻️ change the artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
ashiishme committed Sep 3, 2023
1 parent fba1ef1 commit 2571e8c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cache: 'yarn'

- name: Setup Pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v3
with:
static_site_generator: next

Expand All @@ -53,16 +53,16 @@ jobs:
- name: Build Docs App
run: yarn build

- name: Grant permissions
run: |
chmod -c -R +rX docs/out | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
# - name: Grant permissions
# run: |
# chmod -c -R +rX docs/out | while read line; do
# echo "::warning title=Invalid file permissions automatically fixed::$line"
# done

- name: Upload Docs App
uses: actions/upload-pages-artifact@v2.0.0
uses: actions/upload-pages-artifact@v2
with:
path: ./out
path: docs/out

deploy:
environment:
Expand All @@ -73,4 +73,4 @@ jobs:
steps:
- name: Deploy Docs App
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v2

0 comments on commit 2571e8c

Please sign in to comment.