Skip to content
Merged
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/Doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: doxygen

on:
push:
branches: master
branches: main
schedule:
- cron: '0 0 * * *'

Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
artifacts/ITKDoxygenXML-*.tar.gz
artifacts/ITKDoxygen-*.tar.gz
- name: Update gh-pages
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/main'
run: |
tar -zxf artifacts/ITKDoxygen-*.tar.gz
touch html/.nojekyll
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build docker image

on:
push:
branches: ['master']
branches: ['main']
pull_request:
branches: ['master']
branches: ['main']

jobs:

Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SRC_DIR="/work/ITK"
BLD_DIR="/work/ITK-bld"

# If the SRC_DIR is not mounted, then this tag will be checked out
GIT_TAG=${GIT_TAG:-"master"}
GIT_TAG=${GIT_TAG:-"main"}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@thewtex the main ITK repo has not been renamed yet? or is there going to be an alias available soon?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@blowekamp good catch -- please take a look at the corresponding follow-up in #16


set -xe

Expand Down
Loading