File tree Expand file tree Collapse file tree 4 files changed +39
-33
lines changed
Expand file tree Collapse file tree 4 files changed +39
-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+ - actions-debug
7+
8+ jobs :
9+ deploy :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Check out code
13+ uses : actions/checkout@v2
14+
15+ - name : Setup dependencies
16+ run : yarn install --pure-lockfile
17+
18+ - name : Setup Hugo
19+ uses : peaceiris/actions-hugo@v2
20+ with :
21+ hugo-version : ' 0.68.3'
22+ extended : true
23+
24+ - name : Build
25+ run : hugo
26+
27+ - name : Deploy
28+ if : success()
29+ uses : jakejarvis/s3-sync-action@master
30+ with :
31+ args : --acl public-read
32+ env :
33+ AWS_S3_BUCKET : ' rovercode-user-docs'
34+ AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
35+ AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
36+ AWS_REGION : ' us-east-2'
37+ 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