File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 8
8
- main # Set a branch to trigger deployment
9
9
workflow_dispatch :
10
10
11
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
12
+ permissions :
13
+ contents : read
14
+ pages : write
15
+ id-token : write
16
+
17
+ # Allow one concurrent deployment
18
+ concurrency :
19
+ group : " pages"
20
+ cancel-in-progress : true
21
+
11
22
jobs :
12
23
build_and_deploy :
13
24
14
25
environment :
15
26
name : github-pages
16
- url : ${{ steps.deployment.outputs.page_url }}
27
+ url : https://yshgroup.github.io/vue3-fullcalendar-bootstrap/
17
28
18
29
runs-on : ubuntu-latest
19
30
50
61
- name : Deploy to GitHub Pages
51
62
id : deployment
52
63
uses : actions/deploy-pages@v4
64
+ # You can add another step here to use the page_url
65
+
66
+ - name : Output deployment URL
67
+ run : echo "The deployed page URL is ${{ steps.deployment.outputs.page_url }}"
You can’t perform that action at this time.
0 commit comments