Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Feb 2, 2025
1 parent c62ff67 commit 6fb67d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
# try and avoid timeout errors
yarn config set httpTimeout 100000
if [[ "${{ github.ref }}" == refs/tags/* ]]
if [[ "${{ github.ref }}" == refs/tags/* ]]; then
export EB_UPDATE_CHANNEL=stable
elif [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
export EB_UPDATE_CHANNEL=beta
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
# try and avoid timeout errors
yarn config set httpTimeout 100000
if [[ "${{ github.ref }}" == refs/tags/* ]]
if [[ "${{ github.ref }}" == refs/tags/* ]]; then
export EB_UPDATE_CHANNEL=stable
elif [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
export EB_UPDATE_CHANNEL=beta
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
# try and avoid timeout errors
yarn config set httpTimeout 100000
if [[ "${{ github.ref }}" == refs/tags/* ]]
if [[ "${{ github.ref }}" == refs/tags/* ]]; then
export EB_UPDATE_CHANNEL=stable
elif [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
export EB_UPDATE_CHANNEL=beta
Expand Down

0 comments on commit 6fb67d6

Please sign in to comment.