Skip to content

πŸ” CrossRepo Sync #71

πŸ” CrossRepo Sync

πŸ” CrossRepo Sync #71

name: πŸ” CrossRepo Sync
on:
# Runs on pushes targeting the default branch
schedule:
- cron: '0 0 * * *' # Run at 00:00 UTC every day
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# 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: "git"
cancel-in-progress: false
# Default to bash
defaults:
run:
shell: bash
jobs:
# Build job
update-submodules:
name: πŸ” Gitmodule Sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
- name: Update Submodules
run: |
git submodule update --init --recursive
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name "${{ github.actor }}"
git add .
git diff-index --quiet HEAD || git commit -m "πŸ” Gitmodule Sync"
git push
env:
GIT_USER: ${{ github.actor }}
GIT_EMAIL: ${{ github.actor }}@users.noreply.github.com
build:
name: βš™οΈ Compilation
runs-on: ubuntu-latest
needs: update-submodules
env:
HUGO_VERSION: 0.133.1
steps:
- name: πŸ“¦ Installation de Hugo
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: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: βš™οΈ Configuration de GitHub Pages
id: pages
uses: actions/configure-pages@v3
- name: πŸ“¦ Installation des dΓ©pendances
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: πŸ“¦ Compilation du site
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--gc \
--minify \
--baseURL "${{ steps.pages.outputs.base_url }}/"
- name: πŸ“¦ Publication des fichiers
uses: actions/upload-pages-artifact@v1
with:
path: ./public
# Deployment job
deploy:
name: 🌐 Publication
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: 🌐 Publication sur GitHub Pages
id: deployment
uses: actions/deploy-pages@v2