fix(SoarETXv2): wrong sized widget text for F5J #409
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: Build Releases | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "**/README.md" | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- "**/README.md" | |
tags: | |
- v* | |
workflow_dispatch: | |
jobs: | |
build-artifact: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate ZIPs | |
run: | | |
chmod +x generate.sh | |
./generate.sh | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sdcard-latest | |
path: | | |
dist/* | |
sdcard.json | |
upload-release: | |
if: github.event_name != 'pull_request' | |
needs: build-artifact | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: sdcard-latest | |
path: . | |
- name: Deploy release | |
uses: crowbarmaster/GH-Automatic-Releases@latest | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Latest" | |
files: | | |
dist/bw212x64.zip | |
dist/bw128x64.zip | |
dist/c320x480.zip | |
dist/c480x272.zip | |
dist/c480x320.zip | |
sdcard.json | |
- name: Auto Create Draft Release | |
uses: crowbarmaster/GH-Automatic-Releases@latest | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
draft: true | |
prerelease: false | |
files: | | |
dist/bw212x64.zip | |
dist/bw128x64.zip | |
dist/c320x480.zip | |
dist/c480x272.zip | |
dist/c480x320.zip | |
sdcard.json |