Update dependency ngeo to v2.10.0-latest.20260716T023131Z.b4e61f8d0 (… #5336
This file contains hidden or 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
| --- | |
| # Compare branch prod-2-7-advance to prod-2-7 except some files removed in file ci/cleanup. | |
| name: Compare simple and advance branch | |
| on: | |
| push: | |
| branches: | |
| - prod-2-10-advance | |
| pull_request: | |
| env: | |
| REF_BRANCH: prod-2-10 | |
| jobs: | |
| main: | |
| runs-on: ubuntu-24.04 | |
| name: Compare simple and advance branch | |
| timeout-minutes: 10 | |
| if: github.actor != 'renovate[bot]' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ env.REF_BRANCH }} | |
| path: ref | |
| - run: mv ref ../ | |
| - run: ci/cleanup . | |
| - run: ci/cleanup ../ref | |
| - run: rm ci/cleanup | |
| - run: cd ..; diff --unified --recursive --new-file demo_geomapfish ref | |
| if: always() | |
| - run: cd ..; diff --unified --recursive --new-file --binary demo_geomapfish ref > /tmp/base.patch || true | |
| if: failure() | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Update from base branch.patch | |
| path: /tmp/base.patch | |
| retention-days: 1 | |
| if: failure() |