Skip to content

Commit

Permalink
Force publish
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierBrassoud committed May 2, 2024
1 parent 013d1ca commit eb1427f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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

0 comments on commit eb1427f

Please sign in to comment.