Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHinsh authored Oct 9, 2024
2 parents e1d13fa + 4d0ad24 commit 700a5f7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,14 @@ jobs:
- HasChanged_src: ${{needs.Setup.outputs.HasChanged_src}}
- HasChanged_docs: ${{needs.Setup.outputs.HasChanged_docs}}
- HasChanged_automation: ${{needs.Setup.outputs.HasChanged_automation}}
### Github Bits
- repository: ${{ github.event_name == 'push' && github.repository || github.event.pull_request.head.repo.full_name }}
- ref: ${{ github.event_name == 'push' && github.ref || github.event.pull_request.head.ref }}
- github.repository: ${{github.repository}}
- github.event.pull_request.head.repo.full_name: ${{github.event.pull_request.head.repo.full_name}}
- github.ref: ${{github.ref}}
- github.event.pull_request.head.ref: ${{github.event.pull_request.head.ref}}
"@
echo $markdown >> $Env:GITHUB_STEP_SUMMARY
- name: "Show Release Description"
Expand All @@ -256,7 +264,7 @@ jobs:
name: "Build, Test, Sonar Cloud Analysis, & Package"
runs-on: windows-latest
needs: Setup
if: ${{ success() }}
if: false # ${{ success() }}
env:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
Expand Down Expand Up @@ -352,7 +360,7 @@ jobs:
BuildDocs:
name: "Build Documentation output"
runs-on: ubuntu-latest
if: ${{ success() }}
if: false # ${{ success() }}
needs: [Setup]
env:
GitVersion_SemVer: ${{ needs.Setup.outputs.GitVersion_SemVer }}
Expand Down

0 comments on commit 700a5f7

Please sign in to comment.