diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 14643f84..5d2e905e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,12 +3,12 @@ name: CI on: push: branches: - - master + - main tags: - "*.*.*" pull_request: branches: - - master + - main permissions: contents: read diff --git a/docs/building.md b/docs/building.md index 499e1871..8bc18d24 100644 --- a/docs/building.md +++ b/docs/building.md @@ -42,7 +42,7 @@ include(FetchContent) FetchContent_Declare( growl GIT_REPOSITORY git@github.com:Bearwaves/growl.git - GIT_TAG master + GIT_TAG main ) FetchContent_MakeAvailable(growl) ``` @@ -52,7 +52,7 @@ has frozen and isn't doing anything; in reality it's just fetching the various Git submodules from within Growl itself, the speed of which will vary based on your internet connection. -You may wish to pin a specific commit (rather than `master`) so that CMake +You may wish to pin a specific commit (rather than `main`) so that CMake doesn't fetch the new version of Growl on every update. You can read more about `FetchContent` in the [CMake documentation](