Skip to content

Update friend links #100

Update friend links

Update friend links #100

Workflow file for this run

name: Deploy Hugo website to Github Pages
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.116.1'
extended: true
- name: Build Site
run: hugo
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master' }}
with:
deploy_key: ${{secrets.ACTIONS_DEPLOY_KEY}}
external_repository: DreamOneX/dreamonex.github.io
publish_branch: master
# cname: blog.dreamonex.eu.org
user_name: DreamOneX
user_email: me@dreamonex.eu.org
publish_dir: ./public