Benutzer:MathiasMahnke/Hugo: Unterschied zwischen den Versionen

Aus Opennet
Wechseln zu: Navigation, Suche
Zeile 12: Zeile 12:
 
  hugo
 
  hugo
 
  #hugo server  # local webserver at http://localhost:1313
 
  #hugo server  # local webserver at http://localhost:1313
 +
 +
Github Pages Action:
 +
(.github/workflows/main.yml)
 +
name: github pages
 +
on:
 +
  push:
 +
    branches:
 +
      - main  # Set a branch to deploy
 +
jobs:
 +
  deploy:
 +
    runs-on: ubuntu-18.04
 +
    steps:
 +
      - uses: actions/checkout@v2
 +
        with:
 +
          submodules: true  # Fetch Hugo themes (true OR recursive)
 +
          fetch-depth: 0    # Fetch all history for .GitInfo and .Lastmod
 +
      - name: Setup Hugo
 +
        uses: peaceiris/actions-hugo@v2
 +
        with:
 +
          hugo-version: 'latest'
 +
          # extended: true
 +
      - name: Build
 +
        run: hugo --minify
 +
      - name: Deploy
 +
        uses: peaceiris/actions-gh-pages@v3
 +
        with:
 +
          github_token: ${{ secrets.GITHUB_TOKEN }}
 +
          publish_dir: ./public
 +
          cname: <site-domain-name>

Version vom 15. Februar 2021, 07:18 Uhr

Installation:

brew install hugo
hugo version
hugo new site <site-name>
cd <site-name>
git init
git submodule add <theme-url> themes/<theme-name>
cp -a themes/<theme-name>/exampleSite/. .
#echo 'theme = "<theme-name>"' >> config.toml

Ausführung:

hugo
#hugo server  # local webserver at http://localhost:1313

Github Pages Action:

(.github/workflows/main.yml)
name: github pages
on:
 push:
   branches:
     - main  # Set a branch to deploy
jobs:
 deploy:
   runs-on: ubuntu-18.04
   steps:
     - uses: actions/checkout@v2
       with:
         submodules: true  # Fetch Hugo themes (true OR recursive)
         fetch-depth: 0    # Fetch all history for .GitInfo and .Lastmod
     - name: Setup Hugo
       uses: peaceiris/actions-hugo@v2
       with:
         hugo-version: 'latest'
         # extended: true
     - name: Build
       run: hugo --minify
     - name: Deploy
       uses: peaceiris/actions-gh-pages@v3
       with:
         github_token: $Vorlage:Secrets.GITHUB TOKEN
         publish_dir: ./public
         cname: <site-domain-name>
Meine Werkzeuge
Namensräume

Varianten
Aktionen
Start
Opennet
Kommunikation
Karten
Werkzeuge