File tree Expand file tree Collapse file tree 2 files changed +42
-2
lines changed
Expand file tree Collapse file tree 2 files changed +42
-2
lines changed Original file line number Diff line number Diff line change 1+ # GitHub Pages Deployment Workflow
2+ # Deploys the demo site to GitHub Pages on push to main branch
3+
4+ name : Deploy Demo to GitHub Pages
5+
6+ on :
7+ push :
8+ branches : ["main"]
9+ workflow_dispatch :
10+
11+ permissions :
12+ contents : read
13+ pages : write
14+ id-token : write
15+
16+ concurrency :
17+ group : " pages"
18+ cancel-in-progress : false
19+
20+ jobs :
21+ deploy :
22+ environment :
23+ name : github-pages
24+ url : ${{ steps.deployment.outputs.page_url }}
25+ runs-on : ubuntu-latest
26+ steps :
27+ - name : Checkout
28+ uses : actions/checkout@v4
29+
30+ - name : Setup Pages
31+ uses : actions/configure-pages@v5
32+
33+ - name : Upload artifact
34+ uses : actions/upload-pages-artifact@v3
35+ with :
36+ path : ' .'
37+
38+ - name : Deploy to GitHub Pages
39+ id : deployment
40+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1212<!-- Organization Name -->
1313<div align =" center " >
1414
15- [ ![ Static Badge] ( https://img.shields.io/badge/AOSSIE-Social_Share_Button-228B22?style=for-the-badge&labelColor=FFC517 )] ( https://TODO. aossie/ )
15+ [ ![ Static Badge] ( https://img.shields.io/badge/AOSSIE-Social_Share_Button-228B22?style=for-the-badge&labelColor=FFC517 )] ( https://aossie-org.github.io/SocialShareButton / )
1616
17- <!-- Correct deployed url to be added -->
17+ [ ![ Live Demo ] ( https://img.shields.io/badge/🚀_Live_Demo-GitHub_Pages-blue?style=for-the-badge )] ( https://aossie-org.github.io/SocialShareButton/ )
1818
1919</div >
2020
You can’t perform that action at this time.
0 commit comments