firmware: config: fix wrong wifi password variable name #5
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: | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: Build and Release | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install PlatformIO Core | |
run: pip install --upgrade platformio | |
- name: Build OGStarTracker | |
run: pio run --project-dir esp32_wireless_control/firmware -e ogstartracker_release | |
- name: Upload Build Artifact | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: binaries | |
path: | | |
.pio/build/ogstartracker_release/ogstartracker*.bin | |
- name: Create release | |
if: ${{ success() }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ github.ref_name }} | |
run: | | |
gh release create "$tag_name" \ | |
--repo="$GITHUB_REPOSITORY" \ | |
--title="Release ${tag_name}" \ | |
--generate-notes | |
gh release upload $tag_name \ | |
.pio/build/ogstartracker_release/ogstartracker*.bin |