We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b5c71e commit f1e26f0Copy full SHA for f1e26f0
.github/workflows/pages.yaml
@@ -35,7 +35,7 @@ concurrency:
35
36
jobs:
37
# Build and Deploy job
38
- build:
+ build_and_deploy:
39
runs-on: ubuntu-latest
40
defaults:
41
run:
@@ -61,18 +61,9 @@ jobs:
61
JEKYLL_ENV: production
62
- name: Upload artifact
63
# Automatically uploads an artifact from the './_site' directory by default
64
- uses: actions/upload-artifact@v2
+ uses: actions/upload-pages-artifact@v3
65
with:
66
- name: github-pages
67
- path: "docs/_site"
68
- # Deployment job
69
- deploy:
70
- environment:
71
72
- url: ${{ steps.deployment.outputs.page_url }}
73
- runs-on: ubuntu-latest
74
- needs: build
75
- steps:
76
- - name: Deploy to GitHub Pages
+ path: 'docs'
+ - name: deploy
77
id: deployment
78
uses: actions/deploy-pages@v4
0 commit comments