We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65a362d commit a551457Copy full SHA for a551457
.github/workflows/pio_registry_publisher.yml
@@ -12,6 +12,9 @@ jobs:
12
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
13
runs-on: ubuntu-latest
14
15
+ env:
16
+ PLATFORMIO_AUTH_TOKEN: ${{ secrets.PIO_ACC_AUTH_KEY }}
17
+
18
steps:
19
- uses: actions/checkout@v3
20
@@ -25,12 +28,6 @@ jobs:
25
28
python -m pip install --upgrade pip
26
29
pip install platformio
27
30
- - name: Setup PlatformIO authentication
- run: |
- mkdir -p ~/.platformio
31
- echo "[auth]" > ~/.platformio/auth.ini
32
- echo "token = ${{ secrets.PIO_AUTH_KEY }}" >> ~/.platformio/auth.ini
33
-
34
- name: Publish to PlatformIO Registry
35
run: |
36
# First check if library.json exists
0 commit comments