Build(deps): Bump actions/download-artifact from 3 to 4 #200
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔨 Build | |
on: | |
push: | |
pull_request: | |
release: | |
types: | |
- published | |
jobs: | |
build_wheels: | |
name: 🎡 ${{ matrix.os }} wheels | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macos-11] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup UCRT64 | |
uses: msys2/setup-msys2@v2 | |
if: matrix.os == 'windows-2019' | |
with: | |
msystem: ucrt64 | |
install: >- | |
git | |
mingw-w64-ucrt-x86_64-toolchain | |
mingw-w64-ucrt-x86_64-glib2 | |
mingw-w64-ucrt-x86_64-pkg-config | |
mingw-w64-ucrt-x86_64-make | |
automake | |
autoconf | |
libtool | |
make | |
- name: Build Windows DLLs | |
if: matrix.os == 'windows-2019' | |
shell: msys2 {0} | |
run: | | |
git clone --branch 1.12.5 https://github.com/hpjansson/chafa libchafa_src | |
cd libchafa_src | |
./autogen.sh --without-tools --host=mingw64 && make | |
- name: Build wheels | |
uses: pypa/[email protected] | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
make_sdist: | |
name: 💽 Make SDist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build SDist | |
run: pipx run build --sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.tar.gz | |
upload_all: | |
name: 📬 Deliver to PyPi | |
needs: [build_wheels, make_sdist] | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' && github.event.action == 'published' | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: artifact | |
path: dist | |
- uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} |