Skip to content

Commit 7683845

Browse files
committed
Pull master
1 parent 5afd053 commit 7683845

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
run: yarn
2424

2525
- name: Add a changeset for @firebase/app
26-
run: yarn ts-node-script scripts/ci/add_changeset.ts
26+
run: |
27+
git pull -f origin master:master
28+
yarn ts-node-script scripts/ci/add_changeset.ts
2729
2830
- name: Create Release Pull Request
2931
uses: changesets/action@master

scripts/ci/add_changeset.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async function addChangeSet() {
4242
// The way actions/checkout works, there is no local `master` branch, but it
4343
// has access to the remote origin/master.
4444
const { stdout } = await exec(
45-
'yarn changeset status --since origin/master'
45+
'yarn changeset status'
4646
);
4747
// only add a changeset for @firebase/app if
4848
// 1. we are publishing a new firebase version. and

0 commit comments

Comments
 (0)