이 문서에서는 Linux, Windows 및 macOS에 GitHub Actions 실행기를 설치하는 방법에 대한 포괄적인 지침을 제공합니다. GitHub에서 워크플로 작업을 실행하기 위해 실행기를 다운로드, 추출 및 구성하는 데 필요한 필수 단계를 다룹니다. 기사
Linux, Windows 및 macOS에 GitHub Actions 러너를 설치하는 방법
방법 Linux에 GitHub Actions 러너를 설치하시겠습니까?
Linux에 GitHub Actions 러너를 설치하려면 다음 단계를 따르세요.
러너 패키지를 실행 가능하게 만들기:
<code>chmod +x actions-runner-linux-x64-2.290.0.tar.gz</code>
러너 패키지 추출:
<code>tar -xzvf actions-runner-linux-x64-2.290.0.tar.gz</code>
탐색 추출된 러너 디렉터리로:
<code>cd actions-runner-linux-x64-2.290.0</code>
러너 실행:
<code>./config.sh --url https://github.com/<YOUR_ORG>/<YOUR_REPO> --token <YOUR_TOKEN></code>
러너 서비스 시작:
<code>sudo ./svc.sh install sudo ./svc.sh start</code>
Windows에 GitHub Actions 러너를 설치하는 방법은 무엇입니까?
Windows에 GitHub Actions 러너를 설치하려면 다음 단계를 따르세요.
러너 서비스 시작:
<code>sc start GitHubActions</code>
macOS에 GitHub Actions 러너를 설치하는 방법은 무엇입니까?
macOS에 GitHub Actions 러너를 설치하려면 다음 단계를 따르세요.
실행기 서비스 시작:
<code>launchctl start com.github.GithubActionsRunner</code>
위 내용은 github 액션 러너 설치 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!