-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (39 loc) · 1.24 KB
/
website.yml
File metadata and controls
49 lines (39 loc) · 1.24 KB
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
name: website
on:
push:
branches:
- '*-release'
jobs:
publish-website:
runs-on: ubuntu-latest
if: github.repository_owner == 'visgl'
env:
MapboxAccessToken: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
steps:
- uses: actions/checkout@v2.1.1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Get version
id: get-version
run: LATEST=$(npm show react-map-gl version | grep -o -E "^[0-9]+\.[0-9]+") && echo "::set-output name=latest::/${LATEST}-release"
- name: Check version
if: ${{ !endsWith(github.ref, steps.get-version.outputs.latest) }}
run: |
echo "Website is only published from the latest release branch"
- name: Build website
if: ${{ endsWith(github.ref, steps.get-version.outputs.latest) }}
run: |
yarn bootstrap
cd website
yarn
yarn build
- name: Deploy
if: ${{ endsWith(github.ref, steps.get-version.outputs.latest) }}
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: website/public
CLEAN: true