We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65532e4 + d33fd15 commit a8581aaCopy full SHA for a8581aa
.github/workflows/metrics.yaml
@@ -140,11 +140,12 @@ jobs:
140
141
- name: Combine json
142
run: |
143
- git clone --depth 1 https://$METRICS_TOKEN@github.com/rust-analyzer/metrics.git
+ echo "${{ secrets.METRICS_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
144
+ chmod 600 ~/.ssh/id_ed25519
145
+
146
+ git clone --depth 1 git@github.com/rust-analyzer/metrics.git
147
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
148
cd metrics
149
git add .
150
git -c user.name=Bot -c user.email=dummy@example.com commit --message 📈
151
git push origin master
- env:
- METRICS_TOKEN: ${{ secrets.METRICS_TOKEN }}
0 commit comments