Skip to content

Upload release tags on behalf of google-oss-bot. #6380

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/health-metrics-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Health Metrics

on: [push, pull_request]
on:
push:
branches: ['**']
pull_request:

env:
GITHUB_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
# Release script requires git history and tags.
fetch-depth: 0
ref: release
token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}
- name: Yarn install
run: yarn
- name: Publish to NPM
Expand All @@ -31,7 +32,6 @@ jobs:
# TODO: Make these flags defaults in the release script.
run: yarn release --releaseType Production --ci --skipTests --skipReinstall --ignoreUnstaged
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN_ANALYTICS: ${{secrets.NPM_TOKEN_ANALYTICS}}
NPM_TOKEN_ANALYTICS_INTEROP_TYPES: ${{secrets.NPM_TOKEN_ANALYTICS_INTEROP_TYPES}}
NPM_TOKEN_ANALYTICS_TYPES: ${{secrets.NPM_TOKEN_ANALYTICS_TYPES}}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test All Packages

on: push
on:
push:
branches: ['**']

env:
# make chromedriver detect installed Chrome version and download the corresponding driver
DETECT_CHROMEDRIVER_VERSION: true
Expand Down