Skip to content

Commit 70cfa09

Browse files
committed
1 parent c55d1a4 commit 70cfa09

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- run:
5555
name: Upload release and prerelease packages
5656
command: |
57-
if [[ "${CIRCLE_BRANCH}" == "master" ]]; then
57+
if [[ "${CIRCLE_BRANCH}" == "main" ]]; then
5858
pip install -U scikit-ci-addons
5959
cd /usr/src/AppLauncher
6060
ci_addons publish_github_release commontk/applauncher \

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- master
7+
- main
88
tags:
99
- 'v*'
1010

Docs/Doxyfile.txt.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1315,7 +1315,7 @@ CHM_FILE =
13151315
HHC_LOCATION =
13161316

13171317
# The GENERATE_CHI flag controls if a separate .chi index file is generated
1318-
# (YES) or that it should be included in the master .chm file (NO).
1318+
# (YES) or that it should be included in the main .chm file (NO).
13191319
# The default value is: NO.
13201320
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
13211321

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Build Status
1818
| [![][circleci]][circleci-lnk] | [![][gha]][gha-lnk] | [![][appveyor]][appveyor-lnk] |
1919

2020

21-
[appveyor]: https://ci.appveyor.com/api/projects/status/s6jen6mde8n72o8u/branch/master?svg=true
21+
[appveyor]: https://ci.appveyor.com/api/projects/status/s6jen6mde8n72o8u/branch/main?svg=true
2222
[appveyor-lnk]: https://ci.appveyor.com/project/commontk/AppLauncher
2323

2424
[circleci]: https://circleci.com/gh/commontk/AppLauncher.svg?style=svg
2525
[circleci-lnk]: https://circleci.com/gh/commontk/AppLauncher
2626

27-
[gha]: https://github.com/commontk/AppLauncher/actions/workflows/CI.yml/badge.svg?branch=master
27+
[gha]: https://github.com/commontk/AppLauncher/actions/workflows/CI.yml/badge.svg?branch=main
2828
[gha-lnk]: https://github.com/commontk/AppLauncher/actions/workflows/CI.yml
2929

3030
contributing
@@ -35,7 +35,7 @@ little bit helps, and credit will always be given.
3535

3636
See [CONTRIBUTING.md][contributing] for more details.
3737

38-
[contributing]: https://github.com/commontk/AppLauncher/blob/master/CONTRIBUTING.md
38+
[contributing]: https://github.com/commontk/AppLauncher/blob/main/CONTRIBUTING.md
3939

4040
maintainers: how to make a release ?
4141
------------------------------------
@@ -76,14 +76,14 @@ maintainers: how to make a release ?
7676
4. Tag the release. Requires a GPG key with signatures:
7777

7878
```bash
79-
git tag -s -m "CTKAppLauncher $tag" $tag master
79+
git tag -s -m "CTKAppLauncher $tag" $tag main
8080
```
8181

82-
5. Publish the tag and `master` branch to trigger the release build
82+
5. Publish the tag and `main` branch to trigger the release build
8383

8484
```bash
8585
git push origin $tag && \
86-
git push origin master
86+
git push origin main
8787
```
8888

8989
_**Important:** Until issue [scikit-build/scikit-ci-addons/issues/96](https://github.com/scikit-build/scikit-ci-addons/issues/96) is addressed, macOS release package should be manually downloaded from the GitHub Actions artifact and uploaded as a GitHub release asset._
@@ -100,7 +100,7 @@ _**Important:** Until issue [scikit-build/scikit-ci-addons/issues/96](https://gi
100100
7. Publish the changes:
101101

102102
```bash
103-
git push origin master
103+
git push origin main
104104
```
105105

106106
License

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
branches:
33
only:
4-
- master
4+
- main
55
skip_tags: true
66

77
shallow_clone: false

0 commit comments

Comments
 (0)