We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108453e commit a8908f7Copy full SHA for a8908f7
.github/workflows/compile.yml
@@ -8,11 +8,12 @@ jobs:
8
runs-on: ubuntu-latest
9
10
steps:
11
- # Set up Arduino CLI
12
- - name: Set up Arduino CLI
13
- uses: arduino/setup-arduino-cli@v1
14
- with:
15
- version: latest
+ # Install Arduino CLI manually
+ - name: Install Arduino CLI
+ run: |
+ wget -qO- https://downloads.arduino.cc/arduino-cli/arduino-cli_latest_Linux_64bit.tar.gz | tar -xvz
+ sudo mv arduino-cli /usr/local/bin/
16
+ arduino-cli version
17
18
# Ensure that Bash is used for compatibility with the prebuild script
19
- name: Ensure Bash Shell
0 commit comments