diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 6bacea9..6ed7d9f 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -67,15 +67,6 @@ jobs: install_shop_with_module: runs-on: ubuntu-latest steps: - - name: Print run parameters - run: | - echo "Running job with:\ - PHP version: ${{ inputs.php }}\ - MySQL version: ${{ inputs.mysql }}\ - Template engine: ${{ inputs.template_engine }}\ - Tests group: ${{ inputs.module_codecept_test_group }}\ - Trigger event: ${{ github.event_name }}" - - name: Clone testing environment run: git clone https://github.com/OXID-eSales/docker-eshop-sdk.git . @@ -87,7 +78,7 @@ jobs: with: path: | ./* - key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} - name: Prepare container configuration run: | @@ -176,9 +167,9 @@ jobs: with: path: | ./* - key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} restore-keys: | - installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} - name: Start containers run: | @@ -237,9 +228,9 @@ jobs: with: path: | ./* - key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} restore-keys: | - installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} - name: Start containers run: | @@ -282,9 +273,9 @@ jobs: with: path: | ./* - key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} restore-keys: | - installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} - name: Start containers run: | @@ -327,9 +318,9 @@ jobs: with: path: | ./* - key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} restore-keys: | - installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} - name: Start containers run: | @@ -383,9 +374,9 @@ jobs: with: path: | ./* - key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} restore-keys: | - installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} - name: Reconfigure codeception for smarty themes run: | @@ -452,9 +443,9 @@ jobs: with: path: | ./* - key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} restore-keys: | - installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} + installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} - name: Download unit artifacts uses: actions/download-artifact@v3