actuall fix deploy
This commit is contained in:
parent
3e092ffafe
commit
2e6c805321
6
.github/workflows/deploy.yml
vendored
6
.github/workflows/deploy.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
|||
run: npm run build
|
||||
|
||||
- name: Add CNAME file
|
||||
run: touch ./build/CNAME && echo "www.interfiber.dev" > ./dist/CNAME
|
||||
run: touch ./build/CNAME && echo "www.interfiber.dev" > ./build/CNAME
|
||||
|
||||
- name: Upload production-ready build files
|
||||
uses: actions/upload-artifact@v3
|
||||
|
@ -43,10 +43,10 @@ jobs:
|
|||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: production-files
|
||||
path: ./dist
|
||||
path: ./build
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./dist
|
||||
publish_dir: ./build
|
||||
|
|
Loading…
Reference in a new issue