GitHub Artifacts API update #1320
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is not auto-generated. Feel free to edit it. | ||
name: ✨ IDE | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }}-ide-pull-request | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }} | ||
jobs: | ||
gui-changed-files: | ||
name: 🔍 GUI Files Changed | ||
uses: ./.github/workflows/gui-changed-files.yml | ||
secrets: inherit | ||
ide-changed-files: | ||
name: 🔍 IDE Files Changed | ||
uses: ./.github/workflows/ide-changed-files.yml | ||
secrets: inherit | ||
engine-changed-files: | ||
name: 🔍 Engine Files Changed | ||
uses: ./.github/workflows/engine-changed-files.yml | ||
secrets: inherit | ||
ide-packaging: | ||
name: 📦 Package | ||
uses: ./.github/workflows/ide-packaging.yml | ||
needs: [gui-changed-files, ide-changed-files, engine-changed-files] | ||
if: needs.gui-changed-files.outputs.any_changed == 'true' || needs.ide-changed-files.outputs.any_changed == 'true' || needs.engine-changed-files.outputs.any_changed == 'true' || github.ref == 'refs/heads/develop' | ||
secrets: inherit | ||
ide-packaging-optional: | ||
name: 📦 Package (Optional) | ||
uses: ./.github/workflows/ide-packaging-optional.yml | ||
Check failure on line 40 in .github/workflows/ide-pull-request.yml GitHub Actions / .github/workflows/ide-pull-request.ymlInvalid workflow file
|
||
needs: [gui-changed-files, ide-changed-files, engine-changed-files] | ||
if: needs.gui-changed-files.outputs.any_changed == 'true' || needs.ide-changed-files.outputs.any_changed == 'true' || needs.engine-changed-files.outputs.any_changed == 'true' || github.ref == 'refs/heads/develop' | ||
secrets: inherit | ||
required-checks: | ||
name: IDE Required Checks | ||
runs-on: ubuntu-latest | ||
needs: [ide-packaging] | ||
if: always() | ||
steps: | ||
- name: Checks Summary | ||
run: | | ||
echo "IDE: ${{ needs.ide-packaging.result }}" | ||
if [[ "${{ needs.ide-packaging.result }}" == "failure" ]]; then | ||
exit 1 | ||
fi | ||
echo "Success!" |