@@ -154,10 +154,9 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
154154 {% include "../examples/github-minimal.yml" %}
155155 ```
156156
157-
158- You can use `env:` with the action just like you would with `run:`; you can
159- also use `with:` to set the command line options: `package-dir: .` and
160- `output-dir: wheelhouse` (those values are the defaults).
157+ Use `env:` to pass [build options](options.md) and `with:` to set
158+ `package-dir: .`, `output-dir: wheelhouse` and `config-file: ''`
159+ locations (those values are the defaults).
161160
162161!!! tab "pipx"
163162 The GitHub Actions runners have pipx installed, so you can easily build in
@@ -180,12 +179,12 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
180179 os: [ubuntu-20.04, windows-2019, macos-10.15]
181180
182181 steps:
183- - uses: actions/checkout@v2
182+ - uses: actions/checkout@v3
184183
185184 - name: Build wheels
186185 run: pipx run cibuildwheel==2.7.0
187186
188- - uses: actions/upload-artifact@v2
187+ - uses: actions/upload-artifact@v3
189188 with:
190189 path: ./wheelhouse/*.whl
191190 ```
@@ -212,18 +211,18 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
212211 os: [ubuntu-20.04, windows-2019, macos-10.15]
213212
214213 steps:
215- - uses: actions/checkout@v2
214+ - uses: actions/checkout@v3
216215
217216 # Used to host cibuildwheel
218- - uses: actions/setup-python@v2
217+ - uses: actions/setup-python@v3
219218
220219 - name: Install cibuildwheel
221220 run: python -m pip install cibuildwheel==2.7.0
222221
223222 - name: Build wheels
224223 run: python -m cibuildwheel --output-dir wheelhouse
225224
226- - uses: actions/upload-artifact@v2
225+ - uses: actions/upload-artifact@v3
227226 with:
228227 path: ./wheelhouse/*.whl
229228 ```
0 commit comments