mirror of
https://github.com/ilyakooo0/urbit.git
synced 2025-01-01 19:46:36 +03:00
build: fix bash conditional in pre-release upload check
This commit is contained in:
parent
9343e78454
commit
f11a1aedd8
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -158,7 +158,7 @@ jobs:
|
||||
- name: upload binary to bootstrap.urbit.org
|
||||
if: env.DO_UPLOAD == 'true'
|
||||
run: |
|
||||
if [ "once" -ne "$VERE_PACE" ]; then
|
||||
if [ "once" != "$VERE_PACE" ]; then
|
||||
version="$(cat ./pkg/urbit/version)"
|
||||
else
|
||||
version="${GITHUB_SHA:0:9}"
|
||||
@ -240,7 +240,7 @@ jobs:
|
||||
CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe
|
||||
shell: bash
|
||||
run: |
|
||||
if [ "once" -ne "$VERE_PACE" ]; then
|
||||
if [ "once" != "$VERE_PACE" ]; then
|
||||
version="$(cat ./pkg/urbit/version)"
|
||||
else
|
||||
version="${GITHUB_SHA:0:9}"
|
||||
@ -275,7 +275,7 @@ jobs:
|
||||
- name: update latest deployed version
|
||||
if: env.DO_UPLOAD == 'true'
|
||||
run: |
|
||||
if [ "once" -ne "$VERE_PACE" ]; then
|
||||
if [ "once" != "$VERE_PACE" ]; then
|
||||
version="$(cat ./pkg/urbit/version)"
|
||||
else
|
||||
version="${GITHUB_SHA:0:9}"
|
||||
|
Loading…
Reference in New Issue
Block a user