Migrate other articles #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# GitHub Actions workflow: Builds the site and uploads it to the target server. | |
# | |
# For more details on workflows, see README.md. | |
# | |
# See also: https://gohugo.io/hosting-and-deployment/hosting-on-github/ | |
# | |
name: Build and Deploy | |
# When to run this workflow | |
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows | |
# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#on | |
on: | |
# Trigger the workflow on push to the main branch (i.e. don't publish from pull requests or other branches). | |
push: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
# TODO: Remove!!!!! | |
pull_request: | |
branches: | |
- main | |
# Permissions for GITHUB_TOKEN for this workflow. | |
# See: https://docs.github.com/en/actions/reference/authentication-in-a-workflow#permissions-for-the-github_token | |
# NOTE: Because of this, we don't use "@hash" but "@vX" for non-GitHub steps below. Usually you would use "@hash" | |
# as a security measure to pin a specific version. However, since we run with the minimal permissions | |
# here, malicious code couldn't do much harm (most likely). | |
# See: https://blog.gitguardian.com/github-actions-security-cheat-sheet/#use-specific-action-version-tags | |
#permissions: | |
# contents: read | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency | |
concurrency: | |
# Makes this workflow part of the "deploy" concurrency group. (Note that this text can be chosen arbitrarily.) | |
group: deploy | |
cancel-in-progress: false | |
# NOTE: Jobs run in parallel by default. | |
# https://docs.github.com/en/actions/using-jobs/using-jobs-in-a-workflow | |
jobs: | |
build-and-deploy: | |
# Name the job | |
name: Build & Deploy | |
# Set the type of machine to run on | |
# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Hugo CLI | |
run: sudo snap install hugo | |
# See: https://github.com/actions/setup-node | |
- name: Setup NodeJS environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
# See: https://github.com/actions/checkout | |
- name: Clone Git repository | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
submodules: true | |
- name: Download node modules | |
run: npm install | |
working-directory: themes/devlog-theme/assets | |
- name: Build site | |
run: hugo --gc --minify --printPathWarnings --logLevel info -d ./public/ | |
# See: https://github.com/marketplace/actions/ftp-deploy | |
- name: Deploy site | |
uses: SamKirkland/[email protected] | |
with: | |
log-level: verbose | |
server: 'w00947c7.kasserver.com' | |
username: 'f016388c' | |
# See: https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions | |
password: ${{ secrets.ftp_password }} | |
protocol: ftps # make it encrypted | |
local-dir: ./public/ | |
server-dir: ./public_www/ | |
state-name: ../sync-state.json | |
# NOTE: By default, "exclude" contains "node_modules". We have to remove this exclude rule because | |
# we use this to ship fontawesome. (We simply leave this empty because there's nothing to exclude.) | |
# For default, see: https://github.com/marketplace/actions/ftp-deploy#exclude-files | |
exclude: '' |