mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
ci(manual-release): fix EXTRA_FEATURES not being passed correctly (#912)
This commit is contained in:
4
.github/workflows/manual-release.yml
vendored
4
.github/workflows/manual-release.yml
vendored
@ -34,14 +34,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Add multiple_mca feature if enabled
|
- name: Add multiple_mca feature if enabled
|
||||||
if: ${{ inputs.multiple_mca == true }}
|
if: ${{ inputs.multiple_mca == true }}
|
||||||
run: echo "--features multiple_mca" >> EXTRA_FEATURES
|
run: echo 'EXTRA_FEATURES="--features multiple_mca"' >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build and push router Docker image
|
- name: Build and push router Docker image
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
build-args: |
|
build-args: |
|
||||||
RUN_ENV=${{ inputs.environment }}
|
RUN_ENV=${{ inputs.environment }}
|
||||||
EXTRA_FEATURES=EXTRA_FEATURES
|
EXTRA_FEATURES=${{ env.EXTRA_FEATURES }}
|
||||||
BINARY=router
|
BINARY=router
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
|
|||||||
Reference in New Issue
Block a user