We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d61567 commit 8ec9d11Copy full SHA for 8ec9d11
1 file changed
.github/workflows/deploy.yml
@@ -15,25 +15,21 @@ jobs:
15
runs-on: ubuntu-latest
16
steps:
17
- name: Checkout repository
18
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
19
20
- - name: Install, build, and prepare Astro site
21
- uses: withastro/action@v3
+ - name: Install, build, and upload your site
+ uses: withastro/action@v5
22
with:
23
path: .
24
node-version: 20
25
package-manager: npm
26
27
- - name: Upload GitHub Pages artifact (v4)
28
- uses: actions/upload-pages-artifact@v2
29
- with:
30
- path: ./dist
31
-
32
deploy:
33
needs: build
34
35
environment:
36
name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
37
38
- name: Deploy to GitHub Pages
39
id: deployment
0 commit comments