Commit 8ff5c03d53ef531f55ff119e03200e364b09f103
1 parent
c69996d0
ci: remove cache
Showing
1 changed file
with
13 additions
and
11 deletions
.github/workflows/ftp-schedule.yml
@@ -26,20 +26,22 @@ jobs: | @@ -26,20 +26,22 @@ jobs: | ||
26 | with: | 26 | with: |
27 | node-version: '16.x' | 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 | - name: Build | 41 | - name: Build |
42 | run: | | 42 | run: | |
43 | + yarn cache clean | ||
44 | + rm -rf ./node_modules yarn.lock | ||
43 | yarn install | 45 | yarn install |
44 | yarn run build | 46 | yarn run build |
45 | 47 |