Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ci.yml « workflows « .github - github.com/janraasch/hugo-product-launch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e78842420253fa47e07feaa8138b6310fd55036 (plain)
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
name: CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  build:
    runs-on: ubuntu-18.04

    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Read node-version from .nvmrc
        run: echo ::set-output name=NVMRC::$(cat .nvmrc)
        id: nvm

      - name: Install Node.js, NPM and Yarn
        uses: actions/setup-node@v3.5.1
        with:
          node-version: "${{ steps.nvm.outputs.NVMRC }}" # see previous run-statement

      - run: npm install # installs postcss-cli, etc.
      - run: npm test

      - name: Setup Hugo
        uses: peaceiris/actions-hugo@v2.6.0
        with:
          hugo-version: latest

      #
      # See /scripts/generate_resources.sh
      # this is taken care of... Hopefully :-)
      #
      # - name: Create hugo-product-launch folder in resources
      #   run: mkdir ./exampleSite/resources/_gen/assets/css/hugo-product-launch

      # # Otherwise I keep getting the error:
      # # Error: Error building site: POSTCSS: failed to transform "css/main.css" (text/css): resource "css/hugo-product-launch/css/main.css_674d3a8c056e8697f10ad004211806b8" not found in file cache.
      # # see e.g. https://github.com/janraasch/hugo-product-launch/runs/1026595219?check_suite_focus=true#step:8:4
      # - name: Copy cached resources to hugo-product-launch folder
      #   run: cp -R ./exampleSite/resources/_gen/assets/css/css ./exampleSite/resources/_gen/assets/css/hugo-product-launch/css

      - name: Build local ./exampleSite
        run: hugo --minify --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://janraasch.github.io/hugo-product-launch/

      - name: Deploy to GitHub Pages
        if: github.event_name == 'push'
        uses: peaceiris/actions-gh-pages@v3.8.0
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./public