Skip to content

Commit

Permalink
Creo la variable de composer de forma dinamica
Browse files Browse the repository at this point in the history
  • Loading branch information
Wtyd committed Dec 30, 2023
1 parent fa1c726 commit 9a38245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:

- name: Crear variable
id: composer-cache
run: echo "dir=/home/runner/.cache/composer/files" >> $GITHUB_OUTPUT
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
# - name: Get composer cache directory
# id: composer-cache
# run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Lee variable
run: echo "dir=${{ steps.composer-cache.outputs.dir }}"
run: echo ${{ steps.composer-cache.outputs.dir }}
# - name: Cache dependencies
# uses: actions/cache@v3
# with:
Expand Down

0 comments on commit 9a38245

Please sign in to comment.