diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7c03cb2..62b8644 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -22,9 +22,9 @@ jobs: - name: Install AVR core run: arduino-cli core install arduino:avr - name: Zip and install library - run: | - cd .. && zip -r FlixPeriph.zip . -x .git/\* - arduino-cli lib install --zip-path FlixPeriph.zip --config-file arduino-cli.yaml + run: cd .. && zip -r FlixPeriph.zip . -x .git/\* + - name: Install library + run: arduino-cli lib install --zip-path ../FlixPeriph.zip --config-file arduino-cli.yaml - name: Build MPU9250 example for ESP32 run: cd examples/MPU9250 && arduino-cli compile --fqbn esp32:esp32:esp32 - name: Build MPU9250 example for ESP32 D1 Mini