File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 1
1
name : Deploy to GitHub Pages
2
2
3
3
on :
4
- # Trigger the workflow every time you push to the `main` branch
5
- # Using a different branch name? Replace `main` with your branch’s name
6
4
push :
7
5
branches : [ stable ]
8
- # Allows you to run this workflow manually from the Actions tab on GitHub.
9
6
workflow_dispatch :
10
7
11
- # Allow this job to clone the repo and create a page deployment
12
8
permissions :
13
9
contents : read
14
10
pages : write
18
14
build :
19
15
runs-on : ubuntu-latest
20
16
steps :
21
- - name : Checkout your repository using git
22
- uses : actions/checkout@v3
23
- - name : Install, build, and upload your site
24
- uses : withastro/action@v1
17
+ - uses : actions/checkout@v4
18
+ - name : Install & Build Website
19
+ uses : withastro/action@v2
25
20
with :
26
21
path : .
27
22
package-manager : bun@latest
35
30
steps :
36
31
- name : Deploy to GitHub Pages
37
32
id : deployment
38
- uses : actions/deploy-pages@v1
33
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments