From d642de04f0053fcbb36f72056523f06a11bdfa86 Mon Sep 17 00:00:00 2001 From: Jonas Dech Date: Wed, 4 Sep 2024 16:39:29 +0200 Subject: [PATCH] added manylinux docker --- .github/workflows/cmake.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 50a74b76d7..4616cef542 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -17,6 +17,8 @@ jobs: # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix runs-on: ubuntu-latest + container: + image: pypa/manylinux2014_x86_64 permissions: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write @@ -44,11 +46,11 @@ jobs: # # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail # run: ctest -C ${{env.BUILD_TYPE}} - - name: Pubnlish to PyPI + - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PyPi_API_TOKEN }} - skip_existing: flase + skip_existing: false # pypi-publish: # name: upload release to PyPI