chg: Add support to set baud rate in bitbang_uart (ESP32 and ESP32C3) #324
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release setup | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
release-setup: | |
if: "!contains(github.event.commits[0].message, '!minor')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
if: github.ref == 'refs/heads/master' | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latestbuild" | |
prerelease: true | |
title: "Latest code build (unstable)" |