From 8c3688eee296a99665397e96bee0e8571a252a9b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 20 Jun 2024 21:15:31 +0200 Subject: [PATCH 1/2] fix(ci): Another take at fixing the pages deployment Signed-off-by: Steffen Vogel --- .github/workflows/docs.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index fbc78fbe..7d474fe8 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -19,6 +19,10 @@ jobs: pages: write id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -62,4 +66,5 @@ jobs: - name: Deploy to GitHub Pages if: github.ref == 'refs/heads/master' + id: deployment uses: actions/deploy-pages@v4 From b9c3abbf48e1f1238368c92872e7cd54b0d5d8fc Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 20 Jun 2024 21:24:01 +0200 Subject: [PATCH 2/2] fix(doc): Update copyright year Signed-off-by: Steffen Vogel --- documentation/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/conf.py b/documentation/conf.py index 36c513cd..55313e0e 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -19,8 +19,8 @@ # -- Project information ----------------------------------------------------- project = "cimpy" -copyright = "2019, ACS RWTH Aachen University" -author = "Author" +copyright = "2019-2024, ACS RWTH Aachen University" +author = "The CIMpy authors" # -- General configuration ---------------------------------------------------