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