Arduino Bootstrapper update (v.1.15.3) #27
Workflow file for this run
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: Create Release | |
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
build: | |
env: | |
commitmsg: ${{ github.event.head_commit.message }} | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: get commit message | |
run: | | |
echo Commit MSG = $commitmsg | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install platformio | |
python --version | |
- name: Install submodules | |
run: | | |
git submodule update --init | |
- name: Setup template config files | |
run: | | |
cp /home/runner/work/solar_station/solar_station/secrets.ini.template /home/runner/work/solar_station/solar_station/secrets.ini | |
- name: Static code analysis | |
run: platformio check --verbose --severity=high --skip-packages | |
- name: Run PlatformIO | |
run: | | |
platformio run -e solarstation; | |
cp .pio/build/solarstation/firmware.bin .pio/build/solarstation/Solar_Station_ESP8266_firmware.bin; | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref_name }} | |
body: | | |
Changes in this Release | |
${{ env.commitmsg }} | |
draft: false | |
prerelease: false | |
- name: upload windows artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: .pio/build/solarstation/Solar_Station_ESP8266_firmware.bin | |
asset_name: Solar_Station_ESP8266_firmware.tar | |
asset_content_type: application/zip | |