Lines Matching +full:- +full:name
1 name: Python Wheels
11 # - published
15 name: Build wheels on ${{ matrix.os }}
16 if: >-
18 contains(github.event.pull_request.labels.*.name, 'release preparation')) ||
21 runs-on: ${{ matrix.os }}
24 # windows-2019, macos-11
25 os: [ubuntu-20.04]
28 - uses: actions/checkout@v4
30 - name: Build wheels
33 - uses: actions/upload-artifact@v4
38 name: Build source distribution
39 if: >-
41 contains(github.event.pull_request.labels.*.name, 'release preparation')) ||
44 runs-on: ubuntu-latest
46 - uses: actions/checkout@v4
48 - name: Build sdist
49 run: pipx run build --sdist
51 - uses: actions/upload-artifact@v4
57 runs-on: ubuntu-latest
63 - uses: actions/download-artifact@v4
66 # if `name: artifact` is omitted, the action will create extra parent dir
67 name: artifact
70 - uses: pypa/gh-action-pypi-publish@v1