From 65b8e33db246e431d731bb4b1767e906c28dbb57 Mon Sep 17 00:00:00 2001 From: Jake Awe <50372925+AyodeAwe@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:25:19 -0600 Subject: [PATCH] enable publishes to nightly anaconda on pushes to main (#118) The workflow setup currently does not publish to https://anaconda.org/rapidsai-nightly and only publishes to https://anaconda.org/rapidsai (via tags); this introduces an issue where conda solves which use the `rapisai-nightly` channel fails. So this PR updates the setup to publish to `rapidsai-nightly` on pushes to main. --- .github/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0357612..aedc8f1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,6 +3,8 @@ name: build on: push: + branches: + - main tags: - 'v*'