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 8a5da3c commit ca96032
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ name: Release
on: [push]

jobs:
commit_checks:
uses: commit.yaml
build_docs:
# https://github.com/orgs/community/discussions/26238
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# needs: "Commit push"
needs: commit_checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -44,7 +47,7 @@ jobs:

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

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

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

0 comments on commit ca96032

Please sign in to comment.