Skip to content

Commit 9c9c52f

Browse files
ci(manual-release): fix EXTRA_FEATURES not being passed correctly (#912)
1 parent 573a4d3 commit 9c9c52f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/manual-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434

3535
- name: Add multiple_mca feature if enabled
3636
if: ${{ inputs.multiple_mca == true }}
37-
run: echo "--features multiple_mca" >> EXTRA_FEATURES
37+
run: echo 'EXTRA_FEATURES="--features multiple_mca"' >> $GITHUB_ENV
3838

3939
- name: Build and push router Docker image
4040
uses: docker/build-push-action@v4
4141
with:
4242
build-args: |
4343
RUN_ENV=${{ inputs.environment }}
44-
EXTRA_FEATURES=EXTRA_FEATURES
44+
EXTRA_FEATURES=${{ env.EXTRA_FEATURES }}
4545
BINARY=router
4646
context: .
4747
push: true

0 commit comments

Comments
 (0)