首页  >  文章  >  开发工具  >  如何安装 github actions runner

如何安装 github actions runner

Patricia Arquette
Patricia Arquette原创
2024-10-10 10:57:16359浏览

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

如何安装 github actions runner

如何在 Linux、Windows 和 macOS 上安装 GitHub Actions 运行器

如何在 Linux 上安装 GitHub Actions 运行器?

前往在 Linux 上安装 GitHub Actions 运行程序,请按照以下步骤操作:

  1. 从 GitHub 发布页面下载适用于 Linux 的运行程序包。
  2. 使运行程序包可执行:

    <code>chmod +x actions-runner-linux-x64-2.290.0.tar.gz</code>
  3. 提取运行程序包:

    <code>tar -xzvf actions-runner-linux-x64-2.290.0.tar.gz</code>
  4. 导航到提取的运行程序目录:

    <code>cd actions-runner-linux-x64-2.290.0</code>
  5. 运行运行器:

    <code>./config.sh --url https://github.com/<YOUR_ORG>/<YOUR_REPO> --token <YOUR_TOKEN></code>
  6. 启动运行器服务:

    <code>sudo ./svc.sh install
    sudo ./svc.sh start</code>

如何安装 GitHub Windows 上的 Actions 运行程序?

要在 Windows 上安装 GitHub Actions 运行程序,请按照以下步骤操作:

  1. 从 GitHub 发布页面下载适用于 Windows 的运行程序包。
  2. 双击运行程序包启动安装向导。
  3. 按照安装向导中的提示完成安装。
  4. 启动运行程序服务:

    <code>sc start GitHubActions</code>

如何在 macOS 上安装 GitHub Actions 运行器?

要在 macOS 上安装 GitHub Actions 运行器,请按照以下步骤操作:

  1. 从 GitHub 发布页面下载 macOS 的运行程序包。
  2. 双击运行程序包启动安装向导。
  3. 按照安装向导中的提示操作完成安装。
  4. 启动运行器服务:

    <code>launchctl start com.github.GithubActionsRunner</code>

以上是如何安装 github actions runner的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn