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 ec94f5f commit a18a745Copy full SHA for a18a745
.github/workflows/release-staging.yml
@@ -60,7 +60,12 @@ jobs:
60
run: |
61
echo "Staging release ${{ steps.get-version.outputs.STAGING_VERSION }}"
62
- name: Publish to NPM
63
- run: yarn release --releaseType staging
+ # --skipTests No need to run tests
64
+ # --skipReinstall Yarn install has already been run
65
+ # --ignoreUnstaged Adding the @firebase/app changeset file means
66
+ # there's unstaged changes. Ignore.
67
+ # TODO: Make these flags defaults in the release script.
68
+ run: yarn release --releaseType staging --skipTests --skipReinstall --ignoreUnstaged
69
env:
70
NPM_TOKEN_ANALYTICS: ${{secrets.NPM_TOKEN_ANALYTICS}}
71
NPM_TOKEN_ANALYTICS_INTEROP_TYPES: ${{secrets.NPM_TOKEN_ANALYTICS_INTEROP_TYPES}}
0 commit comments