Add filter/replace substrings in direction name due changes to its sc… #37
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 | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Create gitignored loginData file | |
run: | | |
cd main | |
touch loginData.hpp | |
echo '#include <string_view>' >> loginData.hpp | |
echo 'constexpr std::string_view StaSsid = "ssid";' >> loginData.hpp | |
echo 'constexpr std::string_view StaPassword = "password";' >> loginData.hpp | |
echo 'constexpr std::string_view ApSsid = "apssid";' >> loginData.hpp | |
echo 'constexpr std::string_view ApPassword = "appassword";' >> loginData.hpp | |
cat loginData.hpp | |
shell: bash | |
- name: esp-idf build | |
uses: espressif/esp-idf-ci-action@v1 | |
with: | |
esp_idf_version: release-v5.1 | |
target: esp32 |