Skip to content

Commit

Permalink
fix: change references to /opt/github-runner path to /home/ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Jul 4, 2023
1 parent 1ab81b6 commit afd9a18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runner_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class RunnerInfo:
class RunnerManager:
"""Manage a group of runners according to configuration."""

runner_bin_path = Path("/opt/github-runner-app")
runner_bin_path = Path("/home/ubuntu/github-runner-app")

def __init__(
self,
Expand Down
2 changes: 1 addition & 1 deletion templates/start.j2
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

(/opt/github-runner/run.sh; sudo systemctl halt -i) &>/dev/null &
(/home/ubuntu/github-runner/run.sh; sudo systemctl halt -i) &>/dev/null &

0 comments on commit afd9a18

Please sign in to comment.