1
0
mirror of synced 2025-12-21 10:57:10 -05:00

Switch example.lab to example.com (#32500)

Co-authored-by: Laura Coursen <lecoursen@github.com>
This commit is contained in:
Martin Lopes
2022-11-11 04:55:20 +10:00
committed by GitHub
parent d82f268a6f
commit c0ea72f4dc
3 changed files with 5 additions and 5 deletions

View File

@@ -709,7 +709,7 @@ steps:
id: step_one
run: |
echo 'JSON_RESPONSE<<EOF' >> $GITHUB_ENV
curl https://example.lab >> $GITHUB_ENV
curl https://example.com >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
```
@@ -723,7 +723,7 @@ steps:
id: step_one
run: |
"JSON_RESPONSE<<EOF" >> $env:GITHUB_ENV
(Invoke-WebRequest -Uri "https://example.lab").Content >> $env:GITHUB_ENV
(Invoke-WebRequest -Uri "https://example.com").Content >> $env:GITHUB_ENV
"EOF" >> $env:GITHUB_ENV
shell: pwsh
```