mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-13 13:14:53 +00:00
fix(check-extension,integration): remove quotes from version names when upladoing sandbox data
fixes: https://github.com/graycoreio/github-actions-magento2/issues/287
This commit is contained in:
@@ -304,6 +304,6 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: sandbox-data-${{ steps.magento-version.outputs.version }}
|
name: sandbox-data-${{ fromJSON(steps.magento-version.outputs.version) }}
|
||||||
path: ${{ steps.setup-magento.outputs.path }}/dev/tests/integration/tmp/sandbox-*
|
path: ${{ steps.setup-magento.outputs.path }}/dev/tests/integration/tmp/sandbox-*
|
||||||
retention-days: 3
|
retention-days: 3
|
||||||
@@ -185,7 +185,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: sandbox-data-${{ steps.magento-version.outputs.version }}
|
name: sandbox-data-${{ fromJSON(steps.magento-version.outputs.version) }}
|
||||||
path: /home/runner/work/infrastructure/magento2/dev/tests/integration/tmp/sandbox-*
|
path: /home/runner/work/infrastructure/magento2/dev/tests/integration/tmp/sandbox-*
|
||||||
retention-days: 3
|
retention-days: 3
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user