From 07f267b13f9516616e70186e7dabf3caae11848f Mon Sep 17 00:00:00 2001 From: Cheng Zhou Date: Thu, 18 Apr 2024 14:54:25 +0800 Subject: [PATCH] wip --- .github/workflows/command2.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/command2.yml b/.github/workflows/command2.yml index bd48f8c076af..e2259a959e69 100644 --- a/.github/workflows/command2.yml +++ b/.github/workflows/command2.yml @@ -61,8 +61,19 @@ jobs: with: fetch-depth: 1 - - name: Build + - name: Set Variable + id: vars + run: | + if [ "${{matrix.meta}}" == "fdb" ]; then + echo "target=juicefs.fdb" >> $GITHUB_OUTPUT + else + echo "target=juicefs" >> $GITHUB_OUTPUT + fi + + - name: Build uses: ./.github/actions/build + with: + target: ${{steps.vars.outputs.target}} - name: Run Example timeout-minutes: 60