Skip to content

Commit

Permalink
Try and fix compute matrix for publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarkall committed Jul 30, 2024
1 parent b8da257 commit 3819148
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,26 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-release
cancel-in-progress: true


jobs:
publish-packages:
needs:
- compute-matrix
- build-conda
secrets: inherit
runs-on: ubuntu-latest
steps:
- run: exit 0
compute-matrix:
runs-on: ubuntu-latest
outputs:
BUILD_MATRIX: ${{ steps.compute-matrix.outputs.BUILD_MATRIX }}
TEST_MATRIX: ${{ steps.compute-matrix.outputs.TEST_MATRIX }}
steps:
- uses: actions/checkout@v4
- name: Compute Build Matrix
id: compute-matrix
uses: ./.github/actions/compute-matrix
build-conda:
uses: ./.github/workflows/conda-python-build.yaml
secrets: inherit
Expand Down
2 changes: 1 addition & 1 deletion numba_cuda/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.8

0 comments on commit 3819148

Please sign in to comment.