2019-10-01 09:44:04 +02:00
|
|
|
name: ESP32 Arduino Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: published
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Publish Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2021-01-12 14:09:28 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-01-25 14:26:16 +01:00
|
|
|
- uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
2019-10-01 09:44:04 +02:00
|
|
|
- name: Build Release
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: bash ./.github/scripts/on-release.sh
|