Fix tests nightly (#2368)
* Fix test nightly * Fix nightly tests * use same action for checkout in all places
This commit is contained in:
parent
2c49ea1af0
commit
b6644efa54
2 changed files with 3 additions and 3 deletions
4
.github/workflows/getUrlForReleaseTests.js
vendored
4
.github/workflows/getUrlForReleaseTests.js
vendored
|
@ -30,10 +30,10 @@ program
|
||||||
options.token,
|
options.token,
|
||||||
);
|
);
|
||||||
clearTimeout(throwErrorAfterTimeout);
|
clearTimeout(throwErrorAfterTimeout);
|
||||||
core.setOutput("domain", `https://${domain}/`);
|
core.setOutput("url", `https://${domain}/`);
|
||||||
} else {
|
} else {
|
||||||
core.setOutput(
|
core.setOutput(
|
||||||
"domain",
|
"url",
|
||||||
`https://v${getFormattedVersion(
|
`https://v${getFormattedVersion(
|
||||||
options.version,
|
options.version,
|
||||||
)}.staging.saleor.cloud/`,
|
)}.staging.saleor.cloud/`,
|
||||||
|
|
2
.github/workflows/tests-nightly.yml
vendored
2
.github/workflows/tests-nightly.yml
vendored
|
@ -100,7 +100,7 @@ jobs:
|
||||||
containers: [1, 2, 3, 4]
|
containers: [1, 2, 3, 4]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Check if other env
|
- name: Check if other env
|
||||||
id: get-typed-env-uri
|
id: get-typed-env-uri
|
||||||
|
|
Loading…
Reference in a new issue