Skip to content

Commit bbb3e85

Browse files
committed
gh-actions: Fix typos
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent cf19160 commit bbb3e85

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/firmware.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
run: |
4343
sudo apt-get update
4444
sudo apt-get install -y libudev-dev
45-
cargo make b1display uf2
46-
cargo make c1minimal uf2
47-
cargo make ledmatrix uf2
45+
cargo make --cwd b1display uf2
46+
cargo make --cwd c1minimal uf2
47+
cargo make --cwd ledmatrix uf2
4848
4949
- name: Upload UF2 files
5050
uses: actions/upload-artifact@v3
@@ -59,9 +59,9 @@ jobs:
5959
run: |
6060
sudo apt-get update
6161
sudo apt-get install -y llvm
62-
cargo make b1display bin
63-
cargo make c1minimal bin
64-
cargo make ledmatrix bin
62+
cargo make --cwd b1display bin
63+
cargo make --cwd c1minimal bin
64+
cargo make --cwd ledmatrix bin
6565
6666
- name: Upload bin files
6767
uses: actions/upload-artifact@v3

.github/workflows/software.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: cargo make --cwd inputmodule-control build-release
6767

6868
- name: Check if Linux tool can start
69-
run: cargo make --cwd inputmodule-control run -- --help | grep 'RAW Hid and VIA commandline'
69+
run: cargo make --cwd inputmodule-control run -- --help | grep 'RAW HID and VIA commandline'
7070

7171
- name: Upload Linux tool
7272
uses: actions/upload-artifact@v3
@@ -89,7 +89,7 @@ jobs:
8989
run: cargo make --cwd inputmodule-control build-release
9090

9191
- name: Check if Windows tool can start
92-
run: cargo make --cwd inputmodule-control run -- --help | grep 'RAW Hid and VIA commandline'
92+
run: cargo make --cwd inputmodule-control run -- --help | grep 'RAW HID and VIA commandline'
9393

9494
- name: Upload Windows App
9595
uses: actions/upload-artifact@v3

.github/workflows/traditional-cargo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: cargo build --release --target x86_64-unknown-linux-gnu -p inputmodule-control
5454

5555
- name: Check if tool can start
56-
run: cargo run --release --target x86_64-unknown-linux-gnu -p inputmodule-control -- --help | grep 'RAW Hid and VIA commandline'
56+
run: cargo run --release --target x86_64-unknown-linux-gnu -p inputmodule-control -- --help | grep 'RAW HID and VIA commandline'
5757

5858
windows-software:
5959
name: Build Windows
@@ -70,7 +70,7 @@ jobs:
7070
run: cargo build --release --target x86_64-pc-windows-msvc -p inputmodule-control
7171

7272
- name: Check if tool can start
73-
run: cargo run --release --target x86_64-pc-windows-msvc -p inputmodule-control -- --help | grep 'RAW Hid and VIA commandline'
73+
run: cargo run --release --target x86_64-pc-windows-msvc -p inputmodule-control -- --help | grep 'RAW HID and VIA commandline'
7474

7575
lint-format:
7676
name: Lint and format check

0 commit comments

Comments
 (0)