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.
1 parent cdbaf99 commit bba9bfeCopy full SHA for bba9bfe
.github/workflows/release.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches:
6
- master
7
+
8
+concurrency: ${{ github.workflow }}-${{ github.ref }}
9
10
jobs:
11
release:
@@ -12,9 +14,6 @@ jobs:
12
14
steps:
13
15
- name: Checkout Repo
16
uses: actions/checkout@v2
- with:
- # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
17
- fetch-depth: 0
18
19
- name: Setup Node.js 14.x
20
uses: actions/setup-node@v2
@@ -25,6 +24,7 @@ jobs:
25
24
run: yarn
26
27
- name: Create Release Pull Request or Publish to npm
+ id: changesets
28
uses: changesets/action@v1
29
with:
30
# this expects you to have a script called release which does a build for your packages and calls changeset publish
0 commit comments