Skip to content

Add article "Semantische HTML-Tags" #19

Add article "Semantische HTML-Tags"

Add article "Semantische HTML-Tags" #19

Workflow file for this run

name: Build and deploy website
on:
push:
branches:
- hugo
# tags:
# - 'v*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install node_modules
run: npm ci
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.80.0'
- name: Build
run: hugo --minify
env:
NODE_ENV: production
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
ACCESS_TOKEN: ${{ secrets.GH_PAT }}
BRANCH: release
FOLDER: public
CLEAN: true