Skip to content

fixed Github Action PNG failure #3

fixed Github Action PNG failure

fixed Github Action PNG failure #3

Workflow file for this run

name: Build and Deploy to Second Repo
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive # Crucial for the Blowfish theme
fetch-depth: 0 # Fetch all history for dates/metadata
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.141.0'
extended: true # Required for Blowfish/Tailwind
- name: Build Site
run: hugo --minify
- name: Deploy
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.DEPLOY_TOKEN }}
publish_dir: ./public
external_repository: That1LinuxGuy/MelodeeDesignSite
publish_branch: main