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 6264d9e commit 1698589Copy full SHA for 1698589
.github/workflows/release-staging.yml
@@ -20,21 +20,18 @@ jobs:
20
with:
21
github-token: ${{ secrets.GITHUB_TOKEN }}
22
script: |
23
- const mergeResult = await github.rest.repos.merge({
+ await github.rest.repos.merge({
24
owner: context.repo.owner,
25
repo: context.repo.repo,
26
base: 'release',
27
head: 'master'
28
})
29
- console.log(mergeResult)
30
- name: Checkout release branch (with history)
31
uses: actions/checkout@master
32
33
# Release script requires git history and tags.
34
fetch-depth: 0
35
ref: release
36
- - name: log
37
- run: git log
38
- name: Yarn install
39
run: yarn
40
# Ensures a new @firebase/app is published with every release.
0 commit comments