From f2edfa5eabf7a4cbda97a5c74af594695c27d6d1 Mon Sep 17 00:00:00 2001
From: atalman <atalman@fb.com>
Date: Wed, 21 Sep 2022 08:31:00 -0700
Subject: [PATCH] Pass correct parameters for macos validations

---
 .github/workflows/validate-macos-binaries.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/validate-macos-binaries.yml b/.github/workflows/validate-macos-binaries.yml
index 0e433abc8..3b161a97a 100644
--- a/.github/workflows/validate-macos-binaries.yml
+++ b/.github/workflows/validate-macos-binaries.yml
@@ -11,25 +11,25 @@ jobs:
     with:
       package-type: conda
       os: macos-arm64
-      channel: all
+      channel: nightly
   generate-arm64-wheel-matrix:
     uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
     with:
       package-type: wheel
       os: macos-arm64
-      channel: all
+      channel: nightly
   generate-x86_64-conda-matrix:
     uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
     with:
       package-type: conda
-      os: macos-x86_64
-      channel: all
+      os: macos
+      channel: nightly
   generate-x86_64-wheel-matrix:
     uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
     with:
       package-type: wheel
-      os: macos-x86_64
-      channel: all
+      os: macos
+      channel: nightly
 
   validate-macos-arm64-binaries-conda:
     needs: generate-arm64-conda-matrix