Skip to content

Commit

Permalink
echo 8
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Nov 4, 2023
1 parent 30a2216 commit 425f4c5
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/composite-actions/install-composer-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@ inputs:
runs:
using: "composite"
steps:
- name: GGG2
- name: GGG2a
shell: bash
run: echo ${{ inputs.cache-path }}
run: echo GGG2a && echo ${{ inputs.cache-path }}

- name: GGG2b
shell: Bash
env:
DIR: ${{ inputs.cache-path }}
run: echo GGG2b && echo ${DIR}

- name: GGG3
uses: actions/cache@v3
env:
DIR: ${{ inputs.cache-path }}
with:
path: ${DIR}
path: ${{ inputs.cache-path }}
key: GGG-${{ inputs.php }}-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
Expand Down

0 comments on commit 425f4c5

Please sign in to comment.