added deployments
This commit is contained in:
parent
5b794ead5f
commit
9a803b234d
1 changed files with 6 additions and 0 deletions
6
.github/workflows/deploy.yml
vendored
6
.github/workflows/deploy.yml
vendored
|
@ -51,6 +51,9 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: pnpm run build
|
run: pnpm run build
|
||||||
|
|
||||||
|
- name: Debug directory contents
|
||||||
|
run: ls -la ./dist
|
||||||
|
|
||||||
- name: Setup Pages
|
- name: Setup Pages
|
||||||
uses: actions/configure-pages@v4
|
uses: actions/configure-pages@v4
|
||||||
|
|
||||||
|
@ -58,6 +61,7 @@ jobs:
|
||||||
uses: actions/upload-pages-artifact@v3
|
uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: "./dist"
|
path: "./dist"
|
||||||
|
name: "github-pages"
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
environment:
|
environment:
|
||||||
|
@ -69,3 +73,5 @@ jobs:
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
id: deployment
|
id: deployment
|
||||||
uses: actions/deploy-pages@v3
|
uses: actions/deploy-pages@v3
|
||||||
|
with:
|
||||||
|
artifact_name: "github-pages"
|
||||||
|
|
Loading…
Add table
Reference in a new issue