diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 06490f8..863498b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,10 +25,10 @@ jobs: # Steps bellow occurs only when a version is created - uses: actions/checkout@v4 - if: ${{ steps.release.outputs.release_created }} + # if: ${{ steps.release.outputs.release_created }} - name: Cache pio and pip - if: ${{ steps.release.outputs.release_created }} + # if: ${{ steps.release.outputs.release_created }} uses: actions/cache@v3 with: path: | @@ -37,16 +37,16 @@ jobs: key: ${{ runner.os }}-pio - uses: actions/setup-python@v4 - if: ${{ steps.release.outputs.release_created }} + # if: ${{ steps.release.outputs.release_created }} with: python-version: '3.9' - name: Install PlatformIO Core - if: ${{ steps.release.outputs.release_created }} + # if: ${{ steps.release.outputs.release_created }} run: pip install --upgrade platformio - name: PlatformIO publish - if: ${{ steps.release.outputs.release_created }} + # if: ${{ steps.release.outputs.release_created }} env: PLATFORMIO_AUTH_TOKEN: ${{ secrets.PIO_PAT }} run: pio package publish --type library --no-interactive