diff --git a/.github/workflows/artifact.yml b/.github/workflows/artifact.yml index 76519e893..995f988cf 100644 --- a/.github/workflows/artifact.yml +++ b/.github/workflows/artifact.yml @@ -30,11 +30,13 @@ jobs: - name: Setup drupal and save database dump run: | - drush si -y && drush cr && drush si --existing-config -y && drush cim -y + drush si -y && drush cr + drush si --existing-config -y + drush cim -y drush sql-dump --result-file=${GITHUB_WORKSPACE}/latest.sql - name: Upload latest database dump - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: latest.sql path: latest.sql