Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(actions): set default branch #87

Merged
merged 3 commits into from
Jun 3, 2021
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
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Publish to NPM

on:
push:
branches: [ $default-branch ]
branches: [ master ]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ To have `nlm` release on merge to the default branch or other branches, you need
- set the trigger to the `push` event
```yaml
push:
branches: [ $default-branch, v10.x ] # default branch placeholder + branches to release from
branches: [ main, v10.x ] # branches to release from
```
- pass the `GH_TOKEN` and `NPM_TOKEN` to the env
```yaml
Expand All @@ -239,7 +239,7 @@ name: Publish to NPM

on:
push:
branches: [ $default-branch ] # use default branch placeholder
branches: [ main ] # default branch

jobs:
build:
Expand Down