-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-ci-dev-tests
- Loading branch information
Showing
23 changed files
with
296 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ name: Docs | |
|
||
on: | ||
push: | ||
branches: [ master ] | ||
branches: [ main ] | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
paths-ignore: | ||
|
@@ -43,7 +43,7 @@ jobs: | |
steps: | ||
# Cancel previous runs that are not completed | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected].0 | ||
uses: styfle/[email protected].1 | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
|
@@ -76,7 +76,7 @@ jobs: | |
|
||
# Download cached remote files (artifacts) from GitHub | ||
- name: Download remote data from GitHub | ||
uses: dawidd6/[email protected].0 | ||
uses: dawidd6/[email protected].1 | ||
with: | ||
workflow: cache_data.yaml | ||
workflow_conclusion: success | ||
|
@@ -114,7 +114,7 @@ jobs: | |
|
||
- name: Push the built HTML to gh-pages | ||
run: | | ||
# Detect if this is a release or from the master branch | ||
# Detect if this is a release or from the main branch | ||
if [[ "${GITHUB_EVENT_NAME}" == "release" ]]; then | ||
# Get the tag name without the "refs/tags/" part | ||
version="${GITHUB_REF#refs/*/}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ name: Tests | |
|
||
on: | ||
push: | ||
branches: [ master ] | ||
branches: [ main ] | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
paths-ignore: | ||
|
@@ -66,7 +66,7 @@ jobs: | |
steps: | ||
# Cancel previous runs that are not completed | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected].0 | ||
uses: styfle/[email protected].1 | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
|
@@ -102,7 +102,7 @@ jobs: | |
|
||
# Download cached remote files (artifacts) from GitHub | ||
- name: Download remote data from GitHub | ||
uses: dawidd6/[email protected].0 | ||
uses: dawidd6/[email protected].1 | ||
with: | ||
workflow: cache_data.yaml | ||
workflow_conclusion: success | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ name: GMT Dev Tests | |
|
||
on: | ||
# push: | ||
# branches: [ master ] | ||
# branches: [ main ] | ||
pull_request: | ||
types: [synchronize, ready_for_review] | ||
paths-ignore: | ||
|
@@ -23,7 +23,7 @@ on: | |
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
test_gmt_master: | ||
test_gmt_dev: | ||
name: ${{ matrix.os }} - GMT ${{ matrix.gmt_git_ref }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
|
@@ -39,7 +39,7 @@ jobs: | |
steps: | ||
# Cancel previous runs that are not completed | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected].0 | ||
uses: styfle/[email protected].1 | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
|
@@ -105,7 +105,7 @@ jobs: | |
|
||
# Download cached remote files (artifacts) from GitHub | ||
- name: Download remote data from GitHub | ||
uses: dawidd6/[email protected].0 | ||
uses: dawidd6/[email protected].1 | ||
with: | ||
workflow: cache_data.yaml | ||
workflow_conclusion: success | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
shasum -a 256 baseline-images.zip | ||
- name: Upload baseline image as a release asset | ||
uses: shogo82148/[email protected].0 | ||
uses: shogo82148/[email protected].1 | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: baseline-images.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,13 @@ on: | |
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- master | ||
- main | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "master" | ||
# Drafts your next Release notes as Pull Requests are merged into "main" | ||
- uses: release-drafter/[email protected] | ||
with: | ||
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.