Skip to content

pages

pages #567

Workflow file for this run

name: pages
on:
pull_request:
push:
schedule:
- cron: "0 3 * * *"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- id: deploy-on-push
run:
echo "::set-output name=result::${{ env.DEPLOY_BRANCH }}"
env:
DEPLOY_BRANCH: ${{ secrets.DEPLOY_BRANCH && contains(github.ref, secrets.DEPLOY_BRANCH) && 1 || 0 }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yaml
- name: Build pages
run: |
make gettext html
- name: Create nojekyll file
run: |
touch _build/.nojekyll
- name: Create CNAME file
run: |
if [ ! -z ${CNAME// } ]; then
echo ${CNAME} > _build/CNAME
fi
env:
CNAME: ${{ secrets.CNAME }}
- uses: JamesIves/github-pages-deploy-action@v4.5.0
if: ${{ github.event_name == 'push' && steps.deploy-on-push.outputs.result != 0 }}
with:
branch: gh-pages
folder: _build/html
single-commit: true
git-config-email: 53436240+fortran-lang@users.noreply.github.com
git-config-name: Fortran