publish gh-pages #35
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
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 | |
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 |