fix(workflow): use the dev version of the web for beta releases (#7862)

* fix(workflow): use dev version of the web for beta releases

* chore(config): check version string by prefix
This commit is contained in:
Jealous
2025-01-23 22:49:35 +08:00
committed by GitHub
parent 11b6a6012f
commit c2633dd443
4 changed files with 18 additions and 5 deletions

View File

@ -52,7 +52,12 @@ jobs:
if: steps.cache-musl.outputs.cache-hit != 'true'
run: bash build.sh prepare docker-multiplatform
- name: Build go binary
- name: Build go binary (beta)
if: env.IMAGE_IS_PROD != 'true'
run: bash build.sh beta docker-multiplatform
- name: Build go binary (release)
if: env.IMAGE_IS_PROD == 'true'
run: bash build.sh release docker-multiplatform
- name: Upload artifacts