diff --git a/.ci-helpers/update_credits.py b/.ci-helpers/update_credits.py index 07d8c38a4..e5924dd6a 100644 --- a/.ci-helpers/update_credits.py +++ b/.ci-helpers/update_credits.py @@ -14,7 +14,7 @@ def generate_zenodo(): """Generates `zenodo.rst` file with BibTeX citation Adapted from: https://astrodata.nyc/posts/2021-04-23-zenodo-sphinx/""" - CONCEPT_DOI = "14216805" # See: https://help.zenodo.org/#versioning + CONCEPT_DOI = "14546687" # See: https://help.zenodo.org/#versioning zenodo_path = pathlib.Path("docs/resources/zenodo.rst") year = date.today().year diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml index 8b0938630..db194c0e6 100644 --- a/.github/workflows/post-release.yml +++ b/.github/workflows/post-release.yml @@ -47,8 +47,8 @@ jobs: - name: Update CITATION.cff run: | - rm CITATION.cff - doi2cff init 10.5281/zenodo.14216805 + rm -f CITATION.cff + doi2cff init 10.5281/zenodo.14546687 - uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eca661954..c3763906b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -98,7 +98,7 @@ jobs: - name: Fetch Latest DOI from Zenodo id: fetch-doi run: | - CONCEPT_DOI="14216805" + CONCEPT_DOI="14546687" # Make the API request for BibTeX format, following redirects response=$(curl -s -L -H "Accept: application/x-bibtex" "https://zenodo.org/api/records/${CONCEPT_DOI}")