Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit c2292c9

Browse files
committed
Fixup go run
1 parent f6e7b68 commit c2292c9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

action.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ runs:
2626
shell: bash
2727
run: |
2828
mkdir -p ~/.config/jumpstarter/clients
29-
go run ./cmd/jmpctl/main.go client create test-client-1 > ~/.config/jumpstarter/clients/test-client-1.yaml
29+
go run ./controller/cmd/jmpctl/main.go \
30+
client create test-client-1 > ~/.config/jumpstarter/clients/test-client-1.yaml
3031
cat <<EOF >> ~/.config/jumpstarter/clients/test-client-1.yaml
3132
drivers:
3233
allow: []
@@ -38,7 +39,8 @@ runs:
3839
sudo mkdir -p /etc/jumpstarter/exporters
3940
sudo chown $USER /etc/jumpstarter/exporters
4041
41-
go run ./cmd/jmpctl/main.go exporter create test-exporter-1 > /etc/jumpstarter/exporters/test-exporter-1.yaml
42+
go run ./controller/cmd/jmpctl/main.go \
43+
exporter create test-exporter-1 > /etc/jumpstarter/exporters/test-exporter-1.yaml
4244
cat <<EOF >> /etc/jumpstarter/exporters/test-exporter-1.yaml
4345
export:
4446
power:
@@ -47,7 +49,8 @@ runs:
4749
kubectl -n default patch exporters.jumpstarter.dev test-exporter-1 \
4850
--type=merge --patch '{"metadata":{"labels":{"example.com/board":"rpi4"}}}'
4951
50-
go run ./cmd/jmpctl/main.go exporter create test-exporter-2 > /etc/jumpstarter/exporters/test-exporter-2.yaml
52+
go run ./controller/cmd/jmpctl/main.go \
53+
exporter create test-exporter-2 > /etc/jumpstarter/exporters/test-exporter-2.yaml
5154
cat <<EOF >> /etc/jumpstarter/exporters/test-exporter-2.yaml
5255
export:
5356
storage:

0 commit comments

Comments
 (0)