Skip to content

Commit f0c4f4e

Browse files
authored
Merge pull request #1058 from camptocamp/c2cciutils-upgrade-3.36-gdal3.8
CI updates
2 parents 934a629 + 1cc01c1 commit f0c4f4e

8 files changed

+25
-444
lines changed

.github/renovate.json5

-122
This file was deleted.

.github/workflows/audit.yaml

-71
This file was deleted.

.github/workflows/changelog.yaml

-51
This file was deleted.

.github/workflows/delete-old-workflows-run.yaml

-23
This file was deleted.

.github/workflows/main.yaml

+15-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ jobs:
4949
- run: pre-commit run --all-files
5050
env:
5151
SKIP: poetry-lock
52-
- run: git diff && false
52+
- run: git diff --exit-code --patch > /tmp/pre-commit.patch || true
53+
if: failure()
54+
- uses: actions/upload-artifact@v4
55+
with:
56+
name: Apply pre-commit fix.patch
57+
path: /tmp/pre-commit.patch
58+
retention-days: 1
5359
if: failure()
5460
- name: Print environment information
5561
run: c2cciutils-env
@@ -106,6 +112,14 @@ jobs:
106112
- run: (cd acceptance_tests && c2cciutils-docker-logs)
107113
if: always()
108114

115+
- run: git diff --exit-code --patch > /tmp/dpkg-versions.patch || true
116+
if: failure()
117+
- uses: actions/upload-artifact@v4
118+
with:
119+
name: Update dpkg versions list.patch
120+
path: /tmp/dpkg-versions.patch
121+
retention-days: 1
122+
if: failure()
109123
- name: Publish
110124
run: c2cciutils-publish
111125
if: env.HAS_SECRETS == 'HAS_SECRETS'

.github/workflows/pr-checks.yaml

-29
This file was deleted.

0 commit comments

Comments
 (0)