Skip to content

Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.2 #417

Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.2

Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.2 #417

Workflow file for this run

name: Wheels
on:
release:
types: [published]
push:
branches: main
pull_request:
branches: main
permissions:
contents: read
jobs:
wheels:
strategy:
matrix:
include:
- os: ubuntu-20.04
PYTHON_BINDING_VERSION: "3.10"
- os: ubuntu-20.04
PYTHON_BINDING_VERSION: "3.8"
name: ${{ matrix.os }}, python-${{ matrix.PYTHON_BINDING_VERSION }}
runs-on: ${{ matrix.os }}
env:
WHEEL_PLATFORM: manylinux_2_31_x86_64
PYTHON_BINDING_VERSION: ${{ matrix.PYTHON_BINDING_VERSION }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 1
submodules: recursive
- name: Install Dependencies
run: |
bash .github/workflows/install_dependencies.sh
sudo pip${PYTHON_BINDING_VERSION} install auditwheel
sudo pip${PYTHON_BINDING_VERSION} install --upgrade patchelf>=0.14
- name: Build wheels
shell: bash
run: |
colcon build --packages-select PROJ4 --event-handlers console_direct+ --cmake-args -DCMAKE_POSITION_INDEPENDENT_CODE=ON
source install/setup.bash
colcon build --packages-up-to ad_rss_map_integration --event-handlers console_direct+ --cmake-args -DPYTHON_BINDING_VERSION=${PYTHON_BINDING_VERSION} --metas colcon_python.meta
- name: Repair wheels
shell: bash
run: |
source install/setup.bash
for whl in install/ad_rss/dist/*.whl; do
auditwheel repair $whl --plat ${WHEEL_PLATFORM} --wheel-dir wheelhouse
done
for whl in install/ad_rss_map_integration/dist/*.whl; do
auditwheel repair $whl --plat ${WHEEL_PLATFORM} --wheel-dir wheelhouse
done
- name: Publish wheels to PyPI
uses: pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b # release/v1
if: ${{ github.event_name == 'release'}}
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: wheelhouse/