File diff r27670:9dcc60376c98 → r27671:9107d9c1e34e
.github/workflows/release.yml
Show inline comments
 
@@ -73,27 +73,27 @@ jobs:
 
    uses: ./.github/workflows/release-windows-store.yml
 
    secrets: inherit
 

	
 
    with:
 
      version: ${{ needs.source.outputs.version }}
 

	
 
  upload-aws:
 
    name: Upload (AWS)
 
  upload-cdn:
 
    name: Upload (CDN)
 
    needs:
 
    - source
 
    - docs
 
    - linux
 
    - macos
 
    - windows
 
    - windows-store
 

	
 
    # As windows-store is condition, we need to check ourselves if we need to run.
 
    # The always() makes sure the rest is always evaluated.
 
    if: always() && needs.source.result == 'success' && needs.docs.result == 'success' && needs.linux.result == 'success' && needs.macos.result == 'success' && needs.windows.result == 'success' && (needs.windows-store.result == 'success' || needs.windows-store.result == 'skipped')
 

	
 
    uses: ./.github/workflows/upload-aws.yml
 
    uses: ./.github/workflows/upload-cdn.yml
 
    secrets: inherit
 

	
 
    with:
 
      version: ${{ needs.source.outputs.version }}
 
      folder: ${{ needs.source.outputs.folder }}
 
      trigger_type: ${{ needs.source.outputs.trigger_type }}