diff --git a/.github/workflows/submit-beta.yml b/.github/workflows/submit-beta.yml index 2067ab3b9..99578e790 100644 --- a/.github/workflows/submit-beta.yml +++ b/.github/workflows/submit-beta.yml @@ -12,13 +12,15 @@ jobs: with: node-version: "20.x" cache: "yarn" - - name: Cache yarn modules - uses: actions/cache@v3 - with: - path: "**/node_modules" - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- + # - name: Cache yarn modules + # uses: actions/cache@v3 + # with: + # path: "**/node_modules" + # key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + # restore-keys: | + # ${{ runner.os }}-yarn- + - name: Clear Yarn Cache + run: yarn cache clean - name: Install dependencies run: yarn install - name: Create .env file