Skip to content

Commit

Permalink
fix: πŸ› Remove composer cache from Github build Action (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
knice authored Jul 21, 2022
1 parent 23a156e commit d106980
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,8 @@ jobs:
- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install PHP dependencies
run: composer install --prefer-dist --no-progress
run: composer install --no-progress

- name: Build theme
run: npm run build
Expand All @@ -48,3 +39,4 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: ucsc-2022.zip
generate_release_notes: true

0 comments on commit d106980

Please sign in to comment.