Allow mega2560 builds with non-standard _CHANNELS values #24
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: Upload INI | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- 'reference/speeduino.ini' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate INI | |
uses: hyper-tuner/ini-validate-action@v1 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
filename: reference/speeduino.ini | |
upload: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'noisymime' | |
needs: validate | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Upload INI | |
uses: hyper-tuner/ini-upload-action@v1 | |
with: | |
api-url: "${{ secrets.HYPER_TUNER_INI_UPLOAD_URL }}" | |
username: "${{ secrets.HYPER_TUNER_INI_UPLOAD_USERNAME }}" | |
password: "${{ secrets.HYPER_TUNER_INI_UPLOAD_PASSWORD }}" | |
path: reference/speeduino.ini | |
ecosystem: speeduino |