forked from mieweb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (58 loc) · 2.2 KB
/
fetch.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# This is a basic workflow to help you get started with Actions
name: Fetch Google Changes
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
workflow_dispatch:
inputs:
subject:
description: 'Describe the changes'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: [ self-hosted, docsqa ]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout docs
uses: actions/checkout@v2
- name: Checkout wikiGDrive
run: git clone https://github.com/mieweb/wikiGDrive.git
- name: Build WikiGDrive
run: |
cd wikiGDrive
npm install
npm run build
- name: "Git LFS"
run: |
echo "lfs env"
git lfs env
echo "ulimit -a"
ulimit -a
echo "git lfs fetch"
git lfs fetch
# Runs a single command using the runners shell
- name: Checkout Google Drive
run: node "wikiGDrive/dist/main.js" init --drive "https://drive.google.com/drive/folders/1nwb2j9w6LFZASdr3ouUXPmouw4tynHv-" --dest ./content --link_mode uglyURLs --service_account=wikigdrive.json
# Runs a set of commands using the runners shell
- name: Pulling down changes from Google Drive
run: node "/root/wikiGDrive/dist/main.js" pull
- name: run Hugo for WebChart
run: hugo --config 'config-wc.toml'
- name: run Hugo for Enterprise Health
run: hugo --config 'config-eh.toml'
- name: Rocket.Chat Notification
uses: wreiske/Rocket.Chat.GitHub.Action.Notification@master
if: always()
with:
type: ${{ job.status }}
job_name: '*Fetch Google Changes*'
mention: 'here'
mention_if: 'failure'
channel: '#miedocs'
url: ${{ secrets.ROCKETCHAT_WEBHOOK }}
github_url: 'https://github.mieweb.com'
commit: true
token: ${{ github.token }}