Skip to content

Commit 8f629b5

Browse files
committed
Rename master to main
1 parent e995510 commit 8f629b5

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ jobs:
5656

5757
- name: Upload _release
5858
if: ${{ matrix.os == 'ubuntu-latest' }}
59-
uses: actions/upload-artifact@master
59+
uses: actions/upload-artifact@main
6060
with:
6161
name: _release
6262
path: _release
6363

6464
- name: Upload artifacts for ${{ matrix.os }}
65-
uses: actions/upload-artifact@master
65+
uses: actions/upload-artifact@main
6666
with:
6767
name: ${{ matrix.os }}
6868
path: _build/default/bin/main.exe
@@ -80,19 +80,19 @@ jobs:
8080
node-version: 12.x
8181

8282
- name: Download _release
83-
uses: actions/download-artifact@master
83+
uses: actions/download-artifact@main
8484
with:
8585
name: _release
8686
path: _release
8787

8888
- name: Download linux artifacts
89-
uses: actions/download-artifact@master
89+
uses: actions/download-artifact@main
9090
with:
9191
name: ubuntu-latest
9292
path: _release/platform-linux-x64
9393

9494
- name: Download macOS artifacts
95-
uses: actions/download-artifact@master
95+
uses: actions/download-artifact@main
9696
with:
9797
name: macos-latest
9898
path: _release/platform-darwin-x64

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img width="300" src="https://raw.githubusercontent.com/tmattio/spin/master/doc/logo.svg?sanitize=true" alt="Logo">
2+
<img width="300" src="https://raw.githubusercontent.com/tmattio/spin/main/doc/logo.svg?sanitize=true" alt="Logo">
33
<br><br>
44
OCaml project generator.
55
</p>
@@ -26,7 +26,7 @@
2626
</p>
2727

2828
<div align="center">
29-
<img src="https://raw.githubusercontent.com/tmattio/spin/master/doc/demo.svg?sanitize=true" alt="Demo">
29+
<img src="https://raw.githubusercontent.com/tmattio/spin/main/doc/demo.svg?sanitize=true" alt="Demo">
3030
</div>
3131

3232
## Features
@@ -56,7 +56,7 @@ opam install spin
5656
### Using a script
5757

5858
```bash
59-
curl -fsSL https://github.com/tmattio/spin/raw/master/script/install.sh | bash
59+
curl -fsSL https://github.com/tmattio/spin/raw/main/script/install.sh | bash
6060
```
6161

6262
## Templates
@@ -100,7 +100,7 @@ Although the focus of Spin is to offer a great project generator for the OCaml e
100100

101101
## Usage
102102

103-
For a detailed documentation of Spin's CLI, run `spin --help`, or refer to the [CLI documentation](https://github.com/tmattio/spin/tree/master/doc/cli.md).
103+
For a detailed documentation of Spin's CLI, run `spin --help`, or refer to the [CLI documentation](https://github.com/tmattio/spin/tree/main/doc/cli.md).
104104

105105
### `spin new TEMPLATE [PATH] [--default] [--ignore-config]`
106106

template/cli/template/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ opam install {{ project_slug }}
2525
### Using a script
2626

2727
```bash
28-
curl -fsSL https://github.com/{{ github_username }}/{{ project_slug }}/raw/master/script/install.sh | bash
28+
curl -fsSL https://github.com/{{ github_username }}/{{ project_slug }}/raw/main/script/install.sh | bash
2929
```
3030

3131
## Usage

0 commit comments

Comments
 (0)