Skip to content

Commit

Permalink
Only run static analysis and code signing in Arm-software (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
sm-powell authored Jun 24, 2024
1 parent c973196 commit d78d427
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/post_weekly_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:

coverity:
if: ${{ !startsWith(github.event.ref, 'refs/tags/') }}
if: ${{ (!startsWith(github.event.ref, 'refs/tags/')) && (github.repository_owner == 'Arm-software') }}
name: Run Coverity Static Analysis
runs-on: [self-hosted-ubuntu-latest-x64]
steps:
Expand Down Expand Up @@ -209,6 +209,7 @@ jobs:
shell: cmd

sign-binaries:
if: github.repository_owner == 'Arm-software'
name: Sign Windows and Mac
runs-on: [self-hosted-ubuntu-latest-x64]
needs: [build-macos, build-windows-msvc-ClangCL]
Expand Down Expand Up @@ -276,7 +277,7 @@ jobs:
astcenc-macos-universal
prepare-release:
if: ${{ startsWith(github.event.ref, 'refs/tags/') }}
if: ${{ (startsWith(github.event.ref, 'refs/tags/')) && (github.repository_owner == 'Arm-software') }}
name: Prepare release
runs-on: ubuntu-22.04
needs: [sign-binaries, build-ubuntu]
Expand Down

0 comments on commit d78d427

Please sign in to comment.