fix(ci): resolving bucket name
This commit is contained in:
parent
cefdbe6a3c
commit
71540a90fb
8
.github/workflows/publish-dist.yml
vendored
8
.github/workflows/publish-dist.yml
vendored
@ -82,10 +82,14 @@ jobs:
|
|||||||
|
|
||||||
if [[ "${envName}" = "mainnet" ]]; then
|
if [[ "${envName}" = "mainnet" ]]; then
|
||||||
domain="vega.xyz"
|
domain="vega.xyz"
|
||||||
bucketName="${{ matrix.app }}.${domain}"
|
if [[ -z "${bucketName}" ]]; then
|
||||||
|
bucketName="${{ matrix.app }}.${domain}"
|
||||||
|
fi
|
||||||
elif [[ "${envName}" = "testnet" ]]; then
|
elif [[ "${envName}" = "testnet" ]]; then
|
||||||
domain="fairground.wtf"
|
domain="fairground.wtf"
|
||||||
bucketName="${{ matrix.app }}.${domain}"
|
if [[ -z "${bucketName}" ]]; then
|
||||||
|
bucketName="${{ matrix.app }}.${domain}"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${bucketName}" ]]; then
|
if [[ -z "${bucketName}" ]]; then
|
||||||
|
@ -3,3 +3,6 @@ NX_VEGA_CONFIG_URL=https://raw.githubusercontent.com/vegaprotocol/networks/maste
|
|||||||
NX_VEGA_URL=https://api.vega.community/graphql
|
NX_VEGA_URL=https://api.vega.community/graphql
|
||||||
NX_VEGA_NETWORKS='{"TESTNET":"https://multisig-signer.fairground.wtf","MAINNET":"https://multisig-signer.vega.xyz"}'
|
NX_VEGA_NETWORKS='{"TESTNET":"https://multisig-signer.fairground.wtf","MAINNET":"https://multisig-signer.vega.xyz"}'
|
||||||
NX_VEGA_ENV=MAINNET
|
NX_VEGA_ENV=MAINNET
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user