Skip to content

Commit

Permalink
chore(ci): fix CI to create baseline gate reports (#11055)
Browse files Browse the repository at this point in the history
CI3 broke this job as it's required to be run on master.
  • Loading branch information
TomAFrench authored Jan 6, 2025
1 parent 496a55a commit e2f6905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ jobs:

protocol-circuits-gates-report:
needs: [ci-rest, configure]
if: needs.configure.outputs.non-docs == 'true' && needs.configure.outputs.non-bb == 'true'
if: github.ref_name == 'master' || (needs.configure.outputs.non-docs == 'true' && needs.configure.outputs.non-bb == 'true')
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down Expand Up @@ -600,7 +600,7 @@ jobs:

public-functions-size-report:
needs: [ci-rest, configure]
if: needs.configure.outputs.non-docs == 'true'
if: github.ref_name == 'master' || needs.configure.outputs.non-docs == 'true'
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down

0 comments on commit e2f6905

Please sign in to comment.