Publish Packages #138
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: Publish Packages | |
on: workflow_dispatch | |
env: | |
om_ver_file: om_version | |
origen_ver_file: origen_version | |
jobs: | |
build_manylinux: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS_FOR_RELEASE) }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Run Docker container | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: quay.io/pypa/manylinux2014_x86_64 | |
options: --user root | |
run: | | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
rustup install ${{ fromJSON(vars.RUST_VERSION) }} | |
rustup default ${{ fromJSON(vars.RUST_VERSION) }} | |
rustc --version | |
cargo --version |