diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6d0e449..eca59de 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - main + - master - next - beta - alpha @@ -42,7 +42,7 @@ jobs: run: yarn build - name: Release - if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/alpha') + if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/next' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/alpha') run: yarn semantic-release env: GH_TOKEN: ${{ secrets.GH_TOKEN }} diff --git a/README.md b/README.md index 708c959..5f294f9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
-[![GitHub license](https://img.shields.io/github/license/Wave-Play/pilot?style=flat)](https://github.com/Wave-Play/pilot/blob/main/LICENSE) [![Tests](https://github.com/Wave-Play/pilot/workflows/CI/badge.svg)](https://github.com/Wave-Play/pilot/actions) ![npm](https://img.shields.io/npm/v/@waveplay/pilot) [![minizipped size](https://badgen.net/bundlephobia/minzip/@waveplay/pilot)](https://bundlephobia.com/result?p=@waveplay/pilot) +[![GitHub license](https://img.shields.io/github/license/Wave-Play/pilot?style=flat)](https://github.com/Wave-Play/pilot/blob/master/LICENSE) [![Tests](https://github.com/Wave-Play/pilot/workflows/CI/badge.svg)](https://github.com/Wave-Play/pilot/actions) ![npm](https://img.shields.io/npm/v/@waveplay/pilot) [![minizipped size](https://badgen.net/bundlephobia/minzip/@waveplay/pilot)](https://bundlephobia.com/result?p=@waveplay/pilot) **NextJS routing for Expo & React Native** @@ -105,7 +105,7 @@ This project was originally developed as an internal router for [WavePlay](https ## Documentation -- [Advanced setup for NextJS](https://github.com/Wave-Play/pilot/blob/main/docs/advanced-nextjs.md) +- [Advanced setup for NextJS](https://github.com/Wave-Play/pilot/blob/master/docs/advanced-nextjs.md) ## License diff --git a/release.config.js b/release.config.js index 80bfae7..f7987c3 100644 --- a/release.config.js +++ b/release.config.js @@ -1,6 +1,6 @@ module.exports = { release: { - branches: ['main', 'beta', 'alpha'] + branches: ['master', 'beta', 'alpha'] }, repositoryUrl: 'https://github.com/Wave-Play/pilot' };