Skip to content

Commit

Permalink
Fixed issue with workflow not being able to write to cache
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickl88 authored Dec 10, 2024
1 parent 9342404 commit dc486d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
php-version: ${{ matrix.php-versions }}
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
Expand Down

0 comments on commit dc486d9

Please sign in to comment.