-
Notifications
You must be signed in to change notification settings - Fork 70
45 lines (35 loc) · 1.06 KB
/
static.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
name: Build and Deploy
on:
push:
branches:
- dev
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Get claat
run: |
wget https://github.com/googlecodelabs/tools/releases/download/v2.0.2/claat-linux-amd64
chmod +x claat-linux-amd64
- name: Run claat
run: |
cd TP_instructions
../claat-linux-amd64 export tp*.md
sed -i 's/codelab-elements\//codelab-elements-tmp\//' tp*/index.html # Tmp fix linked to an issue with codelab elements see https://github.com/googlecodelabs/tools/issues/796
- name: Create public directory
run: mkdir _site
- name: Copy files to public directory
run: |
cp -r TP_instructions/* _site
ls _site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1