Skip to content

πŸ‘· concurrency #38

πŸ‘· concurrency

πŸ‘· concurrency #38

Workflow file for this run

name: publish
on:
push:
branches:
- 'main'
repository_dispatch:
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
env:
GH_BOT_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
GH_BOT_NAME: "GitHub Action"
HUGO_VERSION: 0.120.4
# 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.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
main-root:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.repository == 'commonhaus/commonhaus.github.io'
steps:
- id: is-main-root
run: echo "This is the main branch of 'commonhaus/commonhaus.github.io'"
build:
runs-on: ubuntu-latest
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass
run: sudo snap install dart-sass
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Git Sumbodule Update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name ${{ env.GH_BOT_NAME }}
git config user.email ${{ env.GH_BOT_EMAIL }}
git pull --recurse-submodules
git submodule update --init --remote --recursive
if git diff --quiet; then
echo "-- No changes -- "
else
git commit -am "πŸ†™ Auto-update submodule references" && git push
fi
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.5'
cache-dependency-path: 'site/package-lock.json'
cache: 'npm'
- name: NPM Install
working-directory: ./site
run: npm ci
- name: Build with Hugo
env:
HUGO_ENVIRONMENT: production
HUGO_ENV: production
working-directory: ./site
run: hugo --minify
- name: Fix permissions
run: |
chmod -c -R +rX "./public" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./public
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: [main-root, build]
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2