Skip to content

[Reactor] Fix synchronization of Reservoir state #471

[Reactor] Fix synchronization of Reservoir state

[Reactor] Fix synchronization of Reservoir state #471

Workflow file for this run

name: Packaging Tests
on:
workflow_dispatch: # allow manual triggering of this workflow
inputs:
outgoing_ref:
description: "The ref to be built. Can be a tag, commit hash, or branch name"
required: true
default: "main"
upload_to_pypi:
description: "Try to upload wheels and sdist to PyPI after building"
required: false
default: "false"
push:
# Run on tags that look like releases
tags:
- v*
# Run when main is pushed to
branches:
- main
pull_request:
# Run on pull requests when this file is modified
branches:
- main
paths:
- .github/workflows/packaging.yml
permissions: {}
jobs:
build-packages:
name: Trigger building packages from external repos
runs-on: ubuntu-22.04
steps:
- name: Set up the job
id: setup
run: |
if [ -n "${OUTGOING_REF}" ]; then
echo "REF=${OUTGOING_REF}" >> $GITHUB_OUTPUT
else
echo "REF=${GITHUB_REF}" >> $GITHUB_OUTPUT
fi
if [ -n "${UPLOAD_TO_PYPI}" ]; then
echo "UPLOAD_TO_PYPI=${UPLOAD_TO_PYPI}" >> $GITHUB_OUTPUT
elif [[ "${GITHUB_REF}" == refs/tags* ]]; then
echo "UPLOAD_TO_PYPI=true" >> $GITHUB_OUTPUT
else
echo "UPLOAD_TO_PYPI=false" >> $GITHUB_OUTPUT
fi
env:
OUTGOING_REF: ${{ github.event.inputs.outgoing_ref }}
UPLOAD_TO_PYPI: ${{ github.event.inputs.upload_to_pypi }}
GITHUB_REF: ${{ github.ref }}
- name: Trigger PyPI/Wheel builds
run: >
gh workflow run -R cantera/pypi-packages
python-package.yml
-f incoming_ref=${REF}
-f upload=${UPLOAD_TO_PYPI}
env:
GITHUB_TOKEN: ${{ secrets.PYPI_PACKAGE_PAT }}
REF: ${{ steps.setup.outputs.REF }}
UPLOAD_TO_PYPI: ${{ steps.setup.outputs.UPLOAD_TO_PYPI }}