File: deploy-website.yml

package info (click to toggle)
libh3 4.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 48,700 kB
  • sloc: ansic: 20,847; javascript: 632; sh: 46; makefile: 9
file content (35 lines) | stat: -rw-r--r-- 805 bytes parent folder | download | duplicates (2)
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
name: deploy-website

on:
  push:
    branches:
      - master

# This job installs dependencies, builds the website, and pushes it to `gh-pages`
jobs:
  deploy-website:
    name: Deploy website
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - uses: actions/setup-node@v2.4.1
        with:
          node-version: '16'

      - name: Website Build
        working-directory: website
        env:
          MapboxAccessToken: ${{ secrets.MapboxAccessToken }}
        run: |
          yarn
          yarn build

      # Deploy the book's HTML to gh-pages branch
      - name: GitHub Pages action
        uses: peaceiris/actions-gh-pages@v3.8.0
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: website/build
          cname: h3geo.org