From 02669c5edf858910f9fd7b8372e003cc6a8501fa Mon Sep 17 00:00:00 2001 From: Guillaume Lemaitre Date: Wed, 26 Jun 2024 17:26:20 +0200 Subject: [PATCH] MAIN create a CNAME file to be pushed at each merge --- .github/workflows/gh-publish-web.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gh-publish-web.yml b/.github/workflows/gh-publish-web.yml index 38bc8a1..6f51cdd 100644 --- a/.github/workflows/gh-publish-web.yml +++ b/.github/workflows/gh-publish-web.yml @@ -28,7 +28,9 @@ jobs: run: make install-ci - name: Build website - run: make html + run: | + make html + echo "euroscipy.org" > ./output/CNAME - name: Update the main gh-page website if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}