We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2fd54ff + 27a9de6 commit dc2b514Copy full SHA for dc2b514
.github/workflows/release.yml
@@ -1,12 +1,12 @@
1
name: Release
2
3
on:
4
- push:
5
- branches:
6
- - master
7
- - next
8
- - beta
9
- - alpha
+ push:
+ branches:
+ - main
+ - next
+ - beta
+ - alpha
10
11
env:
12
CI: true
@@ -20,7 +20,7 @@ jobs:
20
- name: Checkout Project
21
uses: actions/checkout@v1
22
- name: Install Dependencies
23
- run: npm ci
+ run: npm install --no-package-lock
24
- name: Lint Workspace & Code
25
run: |
26
npm run nx -- workspace-lint
@@ -31,4 +31,4 @@ jobs:
31
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
NPM_TOKEN: ${{ secrets.NPM_TOKEN || secrets.GITHUB_TOKEN }}
34
- run: npm run release
+ run: npm run release
0 commit comments