Bugfix/desmakers 4270 serial.print is not allways working correctly i… #71
Workflow file for this run
This file contains hidden or 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: XMC-for-Arduino Release Automation | |
on: | |
release: | |
types: published | |
push: | |
tags: | |
- 'v*.*.*' | |
- 'V*.*.*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/V') | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- run: pip install requests | |
- name: Build release changelog | |
id: build_changelog | |
uses: mikepenz/release-changelog-builder-action@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build release assets | |
run: | | |
cd .github/scripts | |
python release.py build-release ${{ github.repository }} ${{ github.ref_name }} | |
- name: Upload assets | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: XMC-for-Arduino ${{ github.ref_name }} | |
files: | | |
pkg_build/*.zip | |
pkg_build/package_infineon_index.json | |
body: ${{steps.build_changelog.outputs.changelog}} |