We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a user who builds esphome using build parameters. I need the ability to provide those build parameters to the GitHub actions.
Production boards are built using different pin assignments than the development boards.
esphome \ -s name foobar \ -s rfid1_miso_pin "GPIO37" \ -s rfid1_clk_pin "GPIO36" \ -s rfid1_mosi_pin "GPIO35" \ -s rfid1_ss_pin "GPIO34" \ -s rfid1_spi_interface "spi2" \ compile config.yaml
- name: Build ESPHome firmware uses: esphome/[email protected] with: yaml-file: firmware/config.yaml complete-manifest: true build_parameters: # <------- add build parameters - name: foobar - rfid1_miso_pin: GPIO37 - rfid1_clk_pin: GPIO36 - rfid1_mosi_pin: GPIO35 - rfid1_ss_pin: GPIO34
The text was updated successfully, but these errors were encountered:
Additional use case example
substitutions: version: "0.1.0" esphome: name: living_room_sensor min_version: "2023.11.0" project: name: "your_name.living_room_project" version: ${version}
Where $version is provided automatically on a git tag or release
Sorry, something went wrong.
No branches or pull requests
As a user who builds esphome using build parameters.
I need the ability to provide those build parameters to the GitHub actions.
Example
Production boards are built using different pin assignments than the development boards.
Desired outcome
The text was updated successfully, but these errors were encountered: