File tree Expand file tree Collapse file tree 4 files changed +38
-33
lines changed
Expand file tree Collapse file tree 4 files changed +38
-33
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy Rovercode Deploy
2+ on :
3+ push :
4+ branches :
5+ - master
6+
7+ jobs :
8+ deploy :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Check out code
12+ uses : actions/checkout@v2
13+
14+ - name : Setup dependencies
15+ run : yarn install --pure-lockfile
16+
17+ - name : Setup Hugo
18+ uses : peaceiris/actions-hugo@v2
19+ with :
20+ hugo-version : ' 0.68.3'
21+ extended : true
22+
23+ - name : Build
24+ run : hugo
25+
26+ - name : Deploy
27+ if : success()
28+ uses : jakejarvis/s3-sync-action@master
29+ with :
30+ args : --acl public-read
31+ env :
32+ AWS_S3_BUCKET : ' rovercode-user-docs'
33+ AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
34+ AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
35+ AWS_REGION : ' us-east-2'
36+ SOURCE_DIR : ' ./public'
Original file line number Diff line number Diff line change 11.idea /
2+ public /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1010 --MENU-HEADER-BG-color : # 222222 ; /* Background color of menu header */
1111 --MENU-HEADER-BORDER-color : # eeeeee ; /*Color of menu header border */
1212
13- --MENU-SEARCH-BG-color : # FEAE01 ; /* Search field background color (by default borders + icons) */
13+ --MENU-SEARCH-BG-color : # 444444 ; /* Search field background color (by default borders + icons) */
1414 --MENU-SEARCH-BOX-color : # eeeeee ; /* Override search field border color */
1515 --MENU-SEARCH-BOX-ICONS-color : # eeeeee ; /* Override search field icons color */
1616
You can’t perform that action at this time.
0 commit comments