We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d2a590 commit 4b39875Copy full SHA for 4b39875
.github/workflows/deploy.yml
@@ -1,19 +1,26 @@
1
-name: Deploy to GitHub Pages
+name: 🚀 Deploy Stopwatch App to GitHub Pages
2
3
on:
4
push:
5
branches:
6
- - main
+ - main # or use 'master' if your repo uses that
7
8
jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
+
12
steps:
- - name: Checkout code
13
- uses: actions/checkout@v2
+ - name: 📥 Checkout Code
14
+ uses: actions/checkout@v3
15
16
+ - name: 🔧 Setup Node (Not required but useful for builds)
17
+ uses: actions/setup-node@v3
18
+ with:
19
+ node-version: '18'
20
- - name: Deploy to GitHub Pages
21
+ - name: 🚚 Deploy to GitHub Pages
22
uses: peaceiris/actions-gh-pages@v3
23
with:
24
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./SCT_WD_2
25
+ publish_dir: ./
26
+ publish_branch: gh-pages
0 commit comments