Commit 8ff5c03d53ef531f55ff119e03200e364b09f103

Authored by vben
1 parent c69996d0

ci: remove cache

.github/workflows/ftp-schedule.yml
... ... @@ -26,20 +26,22 @@ jobs:
26 26 with:
27 27 node-version: '16.x'
28 28  
29   - - name: Get yarn cache
30   - id: yarn-cache
31   - run: echo "::set-output name=dir::$(yarn cache dir)"
32   -
33   - - name: Cache dependencies
34   - uses: actions/cache@v2
35   - with:
36   - path: ${{ steps.yarn-cache.outputs.dir }}
37   - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
38   - restore-keys: |
39   - ${{ runner.os }}-yarn-
  29 + # - name: Get yarn cache
  30 + # id: yarn-cache
  31 + # run: echo "::set-output name=dir::$(yarn cache dir)"
  32 +
  33 + # - name: Cache dependencies
  34 + # uses: actions/cache@v2
  35 + # with:
  36 + # path: ${{ steps.yarn-cache.outputs.dir }}
  37 + # key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
  38 + # restore-keys: |
  39 + # ${{ runner.os }}-yarn-
40 40  
41 41 - name: Build
42 42 run: |
  43 + yarn cache clean
  44 + rm -rf ./node_modules yarn.lock
43 45 yarn install
44 46 yarn run build
45 47  
... ...