diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 03dcb31..6e3fb08 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -119,9 +119,9 @@ jobs: if: steps.changetype.outputs.asset_only != 'true' run: | set -euo pipefail - "$ELB" build \ - --elc "$ELC" \ - --runtime "$EL_RUNTIME" + "$ELB" \ + --elc="$ELC" \ + --runtime="$EL_RUNTIME" echo "Binary: $(ls -lh dist/neuron-landing)" # ── Compile JS client sources ───────────────────────────────────────── diff --git a/.gitea/workflows/dev.yaml b/.gitea/workflows/dev.yaml index c159628..1d893ea 100644 --- a/.gitea/workflows/dev.yaml +++ b/.gitea/workflows/dev.yaml @@ -113,9 +113,9 @@ jobs: - name: Build neuron-web with elb run: | set -euo pipefail - "$ELB" build \ - --elc "$ELC" \ - --runtime "$EL_RUNTIME" + "$ELB" \ + --elc="$ELC" \ + --runtime="$EL_RUNTIME" echo "Binary: $(ls -lh dist/neuron-landing)" # ── Compile JS client sources ───────────────────────────────────────── diff --git a/.gitea/workflows/stage.yaml b/.gitea/workflows/stage.yaml index 6947540..ca30e85 100644 --- a/.gitea/workflows/stage.yaml +++ b/.gitea/workflows/stage.yaml @@ -121,9 +121,9 @@ jobs: if: steps.changetype.outputs.asset_only != 'true' run: | set -euo pipefail - "$ELB" build \ - --elc "$ELC" \ - --runtime "$EL_RUNTIME" + "$ELB" \ + --elc="$ELC" \ + --runtime="$EL_RUNTIME" echo "Binary: $(ls -lh dist/neuron-landing)" # ── Compile JS client sources ─────────────────────────────────────────