We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 609b4ba commit acdd7cdCopy full SHA for acdd7cd
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,21 @@
1
+name: Publish
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4.1.7
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v5.2.0
14
+ with:
15
+ python-version: '3.x'
16
+ - name: Install platformio
17
+ run: pip install --upgrade platformio
18
+ - name: Publish package
19
+ env:
20
+ PLATFORMIO_AUTH_TOKEN: ${{ secrets.PLATFORMIO_AUTH_TOKEN }}
21
+ run: pio package publish --owner esphome --non-interactive
0 commit comments