Skip to content

Commit acc5810

Browse files
authored
Add GHA workflow for submitting tags to metric service. (#5602)
1 parent 882d864 commit acc5810

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Health Metrics
2+
3+
on:
4+
push:
5+
tags: ['**']
6+
7+
jobs:
8+
release-diffing:
9+
name: Release Diffing
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: google-github-actions/setup-gcloud@master
13+
with:
14+
service_account_key: ${{ secrets.GCP_SA_KEY }}
15+
- uses: FirebaseExtended/github-actions/health-metrics/release-diffing@master
16+
with:
17+
repo: ${{ github.repository }}
18+
ref: ${{ github.ref }}
19+
commit: ${{ github.sha }}

0 commit comments

Comments
 (0)