We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f972d1a commit e9ce2e9Copy full SHA for e9ce2e9
.github/workflows/test.yaml
@@ -35,5 +35,17 @@ jobs:
35
DEFANG_GH_ACTION_TEST_MESSAGE: ${{ secrets.MESSAGE }}
36
DEFANG_INTERNAL_TEST: dfng-test
37
38
+ - name: Deploy-Empty-Params
39
+ uses: ./
40
+ continue-on-error: true # Ignore dry run error
41
+ with:
42
+ cli-version: v0.5.40
43
+ config-env-vars: ""
44
+ cwd: "./test"
45
+ compose-files: ""
46
+ behavior: ""
47
+ env:
48
+ DEFANG_INTERNAL_TEST: dfng-test
49
+
50
- name: Teardown
51
run: defang config rm DEFANG_GH_ACTION_TEST_MESSAGE
action.yaml
@@ -57,7 +57,7 @@ runs:
57
params+=("-f")
58
params+=("$filename")
59
done
60
- if [[ -n ${{ inputs['behavior'] }} ]]; then
+ if [[ -n "${{ inputs['behavior'] }}" ]]; then
61
params+=("--behavior=${{ inputs['behavior'] }}")
62
fi
63
0 commit comments