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 5074a31 commit f5a5477Copy full SHA for f5a5477
content/manuals/build/ci/github-actions/checks.md
@@ -98,3 +98,29 @@ jobs:
98
targets: build
99
push: true
100
```
101
+
102
+### Using the `call` input directly
103
104
+You can also set the build method with the `call` input which is equivalent to using the `--call` flag with `docker buildx bake`
105
106
+For example, to run a check without defining `call` in your Bake file:
107
108
+```yaml
109
+name: ci
110
111
+on:
112
+ push:
113
114
+jobs:
115
+ docker:
116
+ runs-on: ubuntu-latest
117
+ steps:
118
+ - name: Set up Docker Buildx
119
+ uses: docker/setup-buildx-action@v3
120
121
+ - name: Validate build configuration
122
+ uses: docker/bake-action@v6
123
+ with:
124
+ targets: build
125
+ call: check
126
+```
0 commit comments