File tree 2 files changed +14
-17
lines changed
2 files changed +14
-17
lines changed Original file line number Diff line number Diff line change 5
5
6
6
name: Render and Publish
7
7
8
-
9
-
10
-
11
8
jobs:
12
9
build:
13
10
runs-on: ubuntu-latest
14
- permissions:
15
- pages: write # to deploy to Pages
16
- id-token:
11
+ permissions:
12
+ pages: write
13
+ id-token: write
17
14
18
15
steps:
19
16
- name: Check out repository
@@ -37,16 +34,16 @@ jobs:
37
34
38
35
- name: Upload static files as artifact
39
36
id: deployment
40
- uses: actions/upload-pages-artifact@v3 #
37
+ uses: actions/upload-pages-artifact@v3
41
38
with:
42
39
path: docs/
43
- deploy:
44
- environment :
45
- name: github-pages
46
- url: ${{ steps.deployment.outputs.page_url }}
47
- runs-on: ubuntu-latest
48
- needs: build
49
- steps:
50
- - name: Deploy to GitHub Pages
51
- id: deployment
52
- uses: actions/deploy-pages@v4
40
+
41
+ deploy :
42
+ runs-on: ubuntu-latest
43
+ needs: build
44
+ environment:
45
+ name: github-pages
46
+ url: ${{ steps.deployment.outputs.page_url }}
47
+ steps:
48
+ - name: Deploy to GitHub Pages
49
+ uses: actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments