Skip to content

Commit

Permalink
Auto merge of #15762 - Veykril:metrics-deploy, r=Veykril
Browse files Browse the repository at this point in the history
fix: Fix metrics workflow to use deploy key

I think this should be correct
  • Loading branch information
bors committed Oct 15, 2023
2 parents 65532e4 + d33fd15 commit a8581aa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,12 @@ jobs:

- name: Combine json
run: |
git clone --depth 1 https://$METRICS_TOKEN@github.com/rust-analyzer/metrics.git
echo "${{ secrets.METRICS_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
git clone --depth 1 git@github.com/rust-analyzer/metrics.git
jq -s ".[0] * .[1] * .[2] * .[3] * .[4] * .[5]" build.json self.json ripgrep-13.0.0.json webrender-2022.json diesel-1.4.8.json hyper-0.14.18.json -c >> metrics/metrics.json
cd metrics
git add .
git -c user.name=Bot -c user.email=dummy@example.com commit --message 📈
git push origin master
env:
METRICS_TOKEN: ${{ secrets.METRICS_TOKEN }}

0 comments on commit a8581aa

Please sign in to comment.