Skip to content

Add many more packages that now support wayland and/or building with … #4

Add many more packages that now support wayland and/or building with …

Add many more packages that now support wayland and/or building with … #4

Workflow file for this run

# .github/workflows/preview.yml
name: deploy
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
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: '0.91.2'
# extended: true
- name: Build website
run: hugo --cleanDestinationDir
- name: Deploy website
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages
cname: wiki.mate-desktop.org
force_orphan: true