Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy_to_github_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ jobs:
# Need to specify this conition because otherwise this job might be skipped if
# any job needed by this job's needed job(s) is skipped (e.g., if a job needed by set-website-structure is skipped)
# Reference: https://github.com/actions/runner/issues/2205
if: ${{ always() && ! failure() }}
if: ${{ always() && needs.set-website-structure.result == 'success' }}
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
Expand All @@ -417,7 +417,7 @@ jobs:
pr-preview:
needs: [get-date, get-prs-info, deploy]
# Run this job only if there are open PRs
if: ${{ always() && ! failure() && needs.get-prs-info.outputs.open_prs_info != '' }}
if: ${{ always() && needs.deploy.result == 'success' && needs.get-prs-info.outputs.open_prs_info != '' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion documentation/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# - SITE_URL: the URL of the site (Falls back to the default URL)
# For example, for PR-previews, SITE_URL is set to <default_URL>/pr-preview-NUM
site_name: access-cm3-configs

# Site URL
site_url: !ENV [SITE_URL, "http://access-nri.github.io/access-cm3-configs/"]

Expand Down