Skip to content

Commit

Permalink
Disable cache again (#9625)
Browse files Browse the repository at this point in the history
* fix

* asd
  • Loading branch information
pngwn authored Oct 9, 2024
1 parent 7e23b7e commit 2346ae8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/actions/install-all-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ runs:
- name: Install ffmpeg
uses: FedericoCarboni/setup-ffmpeg@583042d32dd1cabb8bd09df03bde06080da5c87c # @v2
- name: Install test dependencies
if: inputs.test == 'true' && steps.cache.outputs.cache-hit != 'true'
if: inputs.test == 'true'
# && steps.cache.outputs.cache-hit != 'true'
shell: bash
run: |
. ${{ env.VENV_ACTIVATE }}
Expand Down
3 changes: 2 additions & 1 deletion .github/actions/install-frontend-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ runs:
shell: bash
run: pnpm css
- name: Build frontend
if: inputs.skip_build == 'false' && steps.frontend-cache.outputs.cache-hit != 'true'
if: inputs.skip_build == 'false'
# && steps.frontend-cache.outputs.cache-hit != 'true'
shell: bash
run: pnpm build
- name: generate types
Expand Down

0 comments on commit 2346ae8

Please sign in to comment.