diff --git a/.github/workflows/build-main.yaml b/.github/workflows/build-main.yaml new file mode 100644 index 0000000..78eb9e7 --- /dev/null +++ b/.github/workflows/build-main.yaml @@ -0,0 +1,18 @@ +name: build + +on: + push: + branches: + - "main" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + +jobs: + run-checks: + uses: ./.github/workflows/checks-and-builds.yaml + with: + build_type: branch + publish: false + secrets: inherit diff --git a/.github/workflows/build.yaml b/.github/workflows/build-tag.yaml similarity index 91% rename from .github/workflows/build.yaml rename to .github/workflows/build-tag.yaml index 0fb45cb..14c8e58 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build-tag.yaml @@ -2,8 +2,6 @@ name: build on: push: - branches: - - "main" tags: - "v*.*.*" diff --git a/ci/build_wheel.sh b/ci/build_wheel.sh index 4be5b63..f1dd90b 100755 --- a/ci/build_wheel.sh +++ b/ci/build_wheel.sh @@ -10,4 +10,4 @@ WHL_FILE=$(ls dist/*.whl) python -m pip install "${WHL_FILE}[test]" python -m pytest -v tests/ -rapids-upload-wheels-to-s3 dist +RAPIDS_PY_WHEEL_NAME="rapids-build-backend" rapids-upload-wheels-to-s3 dist