This article provides comprehensive instructions on installing GitHub Actions runner on Linux, Windows, and macOS. It covers the essential steps required to download, extract, and configure the runner for running workflow jobs on GitHub. The article
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>
GitHub のインストール方法Windows 上のアクション ランナー?
Windows に GitHub Actions ランナーをインストールするには、次の手順に従います:
ランナー サービスを開始します。
<code>sc start GitHubActions</code>
macOS に GitHub Actions ランナーをインストールするには?
macOS に GitHub Actions ランナーをインストールするには、次の手順に従います:
ランナー サービスを開始します:
<code>launchctl start com.github.GithubActionsRunner</code>
以上がGithubアクションランナーのインストール方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。