Skip to content

Commit b614bd4

Browse files
authored
Merge pull request #1414 from kravciak/prime-from-github-29
[2.9] Use extension from github instead of prime
2 parents 2814308 + 24df23d commit b614bd4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/e2e/00-installation.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ import { RancherUI } from './components/rancher-ui'
1010
import { Common } from './components/common'
1111

1212
// source (yarn dev) | github (add github repo) | prime (just install)
13-
const ORIGIN = process.env.ORIGIN || (process.env.API ? 'source' : 'github')
13+
let ORIGIN = process.env.ORIGIN || (process.env.API ? 'source' : 'github')
14+
// Override prime -> github to fix temporary github runners - issue#1412
15+
ORIGIN = ORIGIN === 'prime' ? 'github' : ORIGIN
1416
expect(ORIGIN).toMatch(/^(source|github|prime)$/)
1517

1618
const MODE = process.env.MODE || 'manual'

0 commit comments

Comments
 (0)