Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit 221c589

Browse files
committed
try again
1 parent 0b60a6d commit 221c589

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build-wheel-and-container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
build-wheel-and-push:
4848
needs: [set-outputs, test-nightly]
49-
if: ${{ always() && !cancelled() && contains(needs.*.result, 'success') }}
49+
if: ${{ always() && needs.set-outputs.outputs.dev == 'false' && needs.test-nightly.result == 'success' || always() && needs.set-outputs.outputs.dev == 'true' && needs.set-outputs.result == 'success' }}
5050
uses: ./.github/workflows/build-wheel.yml
5151
with:
5252
build-label: ubuntu-20.04
@@ -60,7 +60,7 @@ jobs:
6060

6161
test-wheel-and-publish:
6262
needs: [set-outputs, build-wheel-and-push]
63-
if: ${{ always() && !cancelled() && needs.build-wheel-and-publish.result == 'success' }}
63+
if: ${{ always() && !cancelled() && needs.build-wheel-and-push.result == 'success' }}
6464
uses: ./.github/workflows/test-wheel-and-publish.yml
6565
with:
6666
build-label: ubuntu-20.04

.github/workflows/test-nightly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ jobs:
1717
with:
1818
repository: "neuralmagic/compressed-tensors"
1919
path: "compressed-tensors"
20-
ref: ${{needs.test-setup.outputs.branch}}
20+
ref: ${{needs.test-setup.outputs.branch}}
21+
- name: Fail
22+
run: exit 1

0 commit comments

Comments
 (0)