diff --git a/.github/workflows/build-and-prelease.yml b/.github/workflows/build-and-prelease.yml index 88bbf87..3ed4138 100644 --- a/.github/workflows/build-and-prelease.yml +++ b/.github/workflows/build-and-prelease.yml @@ -1,19 +1,17 @@ name: Build and pre-release on GitHub -on: - push: - branches: [ main ] +on: push jobs: build_and_release_wheels_x86_64: runs-on: ubuntu-latest container: - image: quay.io/pypa/manylinux_2_24_x86_64 + image: quay.io/pypa/manylinux1_x86_64 strategy: fail-fast: false steps: - name: Check out repo and submodule repos - uses: actions/checkout@v2 + uses: actions/checkout@v1 with: submodules: recursive - name: Cargo registry cache diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 95a729e..ab2bec7 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -9,16 +9,16 @@ jobs: build_and_release_wheels_x86_64: runs-on: ubuntu-latest container: - image: quay.io/pypa/manylinux_2_24_x86_64 + image: quay.io/pypa/manylinux1_x86_64 strategy: fail-fast: false steps: - name: Check out repo and submodule repos - uses: actions/checkout@v2 + uses: actions/checkout@v1 with: submodules: recursive - name: Cargo registry cache - uses: actions/cache@v2 + uses: actions/cache@v1 env: cache-name: cache-cargo-registry with: diff --git a/.github/workflows/test-install.yml b/.github/workflows/test-install.yml index 009ef4e..e41a783 100644 --- a/.github/workflows/test-install.yml +++ b/.github/workflows/test-install.yml @@ -11,7 +11,7 @@ jobs: python-version: [3.7, 3.8, 3.9, 3.10] steps: - name: Check out repo and submodule repos - uses: actions/checkout@v2 + uses: actions/checkout@v1 with: submodules: recursive - name: Set up Python ${{ matrix.python-version }}