File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy Portfolio to GitHub Pages
2+
3+ on :
4+ # Trigger the workflow every time you push to the main branch
5+ push :
6+ branches : ["main"]
7+ # Allows you to run this workflow manually from the Actions tab
8+ workflow_dispatch :
9+
10+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
11+ permissions :
12+ contents : read
13+ pages : write
14+ id-token : write
15+
16+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
17+ concurrency :
18+ group : " pages"
19+ cancel-in-progress : true
20+
21+ jobs :
22+ build :
23+ runs-on : ubuntu-latest
24+ steps :
25+ - name : Checkout Code
26+ uses : actions/checkout@v4
27+
28+ - name : Setup Node.js
29+ uses : actions/setup-node@v4
30+ with :
31+ node-version : 20
32+
33+ - name : Install Dependencies
34+ run : npm install
35+
36+ - name : Build Application
37+ # This step builds your Vite app and securely injects your GitHub Secrets into the build
38+ run : npm run build
39+ env :
40+ VITE_WEB3FORMS_ACCESS_KEY : ${{ secrets.VITE_WEB3FORMS_ACCESS_KEY }}
41+ VITE_ABSTRACT_API_KEY : ${{ secrets.VITE_ABSTRACT_API_KEY }}
42+
43+ - name : Setup Pages
44+ uses : actions/configure-pages@v4
45+
46+ - name : Upload artifact
47+ uses : actions/upload-pages-artifact@v3
48+ with :
49+ # Upload entire dist repository generated by Vite
50+ path : ' ./dist'
51+
52+ deploy :
53+ environment :
54+ name : github-pages
55+ url : ${{ steps.deployment.outputs.page_url }}
56+ runs-on : ubuntu-latest
57+ needs : build
58+ steps :
59+ - name : Deploy to GitHub Pages
60+ id : deployment
61+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments