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 b710aaa commit 33e73b9
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ on: [push]
jobs:
build_docs:
# https://github.com/orgs/community/discussions/26238
if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: "Commit push"
# 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 @@ -43,7 +44,7 @@ jobs:
path: build/docs

deploy_docs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: build_docs
runs-on: ubuntu-latest
environment:
Expand All @@ -57,8 +58,8 @@ jobs:
uses: actions/deploy-pages@v4

build_exe:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: "Commit push"
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: [tests, lint]
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -83,8 +84,8 @@ jobs:
if-no-files-found: error

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

0 comments on commit 33e73b9

Please sign in to comment.