Skip to content

Commit

Permalink
Debug CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
bdragon300 committed Nov 9, 2024
1 parent 33e73b9 commit 8a5da3c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
# https://github.com/orgs/community/discussions/26238
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# needs: "Commit push"
needs: [tests, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -45,7 +44,7 @@ jobs:

deploy_docs:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: build_docs
needs: [build_docs, run_tests, lint]
runs-on: ubuntu-latest
environment:
name: github-pages
Expand All @@ -59,7 +58,7 @@ jobs:

build_exe:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: [tests, lint]
needs: [run_tests, lint]
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -85,7 +84,7 @@ jobs:

testpypi_publish:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: [tests, lint]
needs: [run_tests, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 8a5da3c

Please sign in to comment.