From ac42053ac75b4dafefbabb3ebdab57827eb8299c Mon Sep 17 00:00:00 2001 From: Andrey Baklanov Date: Tue, 17 Feb 2026 22:48:22 +0200 Subject: [PATCH] ASU-1839: Fix artifact.yml: continue sql-dump even if drush cim fails --- .github/workflows/artifact.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/artifact.yml b/.github/workflows/artifact.yml index 3cfd5410f..c072ecbf1 100644 --- a/.github/workflows/artifact.yml +++ b/.github/workflows/artifact.yml @@ -46,7 +46,7 @@ jobs: run: | drush si -y && drush cr drush si --existing-config -y - drush cim -y + drush cim -y || true drush sql-dump --result-file=${GITHUB_WORKSPACE}/latest.sql - name: Upload latest database dump