From 1f2dc82035d13b694fb569b960dc46ef0a672018 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Mon, 3 May 2021 10:36:44 +0800 Subject: [PATCH] don't cache platformio for now --- .github/actions/initbuild/action.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/actions/initbuild/action.yml b/.github/actions/initbuild/action.yml index db49b31ad..b852d0a6c 100644 --- a/.github/actions/initbuild/action.yml +++ b/.github/actions/initbuild/action.yml @@ -24,12 +24,13 @@ runs: python -m pip install --upgrade pip pip install -U platformio meshtastic adafruit-nrfutil - - name: Cache platformio - uses: actions/cache@v1 - id: cache-platformio # needed in if test - with: - path: ~/.platformio - key: ${{ runner.os }}-platformio + # Don't cache for now because I want to be lazy with portuino updates githashes + # - name: Cache platformio + # uses: actions/cache@v1 + # id: cache-platformio # needed in if test + # with: + # path: ~/.platformio + # key: ${{ runner.os }}-platformio - name: Upgrade platformio run: |