mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
build: hardcode WPT_FYI_USER (#13262)
GHA keeps redacting all occurrences of the word "deno" out of logs because this is our wpt.fyi username. This is rather annoying, so I am just hardcoding the username in the CI script.
This commit is contained in:
parent
2e72893fa2
commit
6ab46b559c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -517,7 +517,7 @@ jobs:
|
|||
github.repository == 'denoland/deno' &&
|
||||
github.ref == 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')
|
||||
env:
|
||||
WPT_FYI_USER: ${{ secrets.WPT_FYI_USER }}
|
||||
WPT_FYI_USER: deno
|
||||
WPT_FYI_PW: ${{ secrets.WPT_FYI_PW }}
|
||||
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }}
|
||||
run: |
|
||||
|
|
2
.github/workflows/wpt_epoch.yml
vendored
2
.github/workflows/wpt_epoch.yml
vendored
|
@ -72,7 +72,7 @@ jobs:
|
|||
|
||||
- name: Upload wpt results to wpt.fyi
|
||||
env:
|
||||
WPT_FYI_USER: ${{ secrets.WPT_FYI_USER }}
|
||||
WPT_FYI_USER: deno
|
||||
WPT_FYI_PW: ${{ secrets.WPT_FYI_PW }}
|
||||
run: |
|
||||
deno run -A ./tools/upload_wptfyi.js wptreport.json --from-raw-file
|
||||
|
|
Loading…
Reference in a new issue