File tree Expand file tree Collapse file tree 3 files changed +13
-18
lines changed Expand file tree Collapse file tree 3 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 1
- name : Deploy
1
+ name : CD
2
2
3
3
on :
4
4
push :
9
9
build-and-deploy :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
13
- - uses : de-vri-es/setup-git-credentials@v2
14
- with :
15
- credentials : ${{ secrets.GIT_CREDENTIALS }}
12
+ - uses : actions/checkout@v4
16
13
17
14
- name : Git setup
18
15
run : |
19
- git config --global user.email "[email protected] "
20
- git config --global user.name "Mateus Elias"
16
+ git config --global user.name github-actions[bot]
17
+ git config --global user.email github-actions[bot]@users.noreply.github.com
21
18
22
- - name : Git fetch
23
- run : |
24
- git fetch --all
25
- git branch -a
19
+ - name : Install dependencies
20
+ run : npm install
26
21
27
- - name : Build & Deploy
28
- run : |
29
- npm install
30
- npm run build
31
- npm run deploy
22
+ - name : Build
23
+ run : npm run build
24
+
25
+ - name : Deploy
26
+ run : npm run deploy
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mateuseap.github.io" ,
3
- "version" : " 0.0.6 " ,
3
+ "version" : " 0.0.7 " ,
4
4
"private" : true ,
5
5
"homepage" : " https://www.mateuseap.com" ,
6
6
"dependencies" : {
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ function Footer() {
54
54
</ div >
55
55
< div className = 'flex flex-col items-start gap-4' >
56
56
< a
57
-
57
+
58
58
className = { clsx (
59
59
'flex items-center gap-2 rounded-md bg-rose-100/30 p-2 font-semibold w-full' ,
60
60
'shadow-md transition-all duration-300 ease-out' ,
You can’t perform that action at this time.
0 commit comments