使用GitHub Actions的Self-hosted runner

embedded/2025/1/9 13:33:48/
  1. 登录github网站选择项目点击Settings按钮,进入设置页面
  2. 点击actions/runners进入Runners页面
  3. 点击New self-hosted runner按钮进入新增页面
  4. 选择相应配置,生成相应的命令,在内网机器上运行
  • 下载:

    # Create a folder
    $ mkdir actions-runner && cd actions-runner# Download the latest runner package
    $ curl -o actions-runner-linux-x64-2.319.1.tar.gz -L https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-linux-x64-2.319.1.tar.gz# Optional: Validate the hash
    $ echo "3f6efb7488a183e291fc2c62876e14c9ee732864173734facc85a1bfb1744464  actions-runner-linux-x64-2.319.1.tar.gz" | shasum -a 256 -c# Extract the installer
    $ tar xzf ./actions-runner-linux-x64-2.319.1.tar.gz
    Configure
    
  • 配置

    # Create the runner and start the configuration experience
    $ ./config.sh --url https://github.com/xxxx/deployWeb --token AGIAQ3S7N4IAHW7REWDQQP3GZAL7Y# Last step, run it!
    $ ./run.sh
    
    • 运行./config.sh --url https://github.com/xxxx/deployWeb --token AGIAQ3S7N4IAHW7REWDQQP3GZAL7Y输出:Must not run with sudo,改用RUNNER_ALLOW_RUNASROOT=true ./config.sh --url https://github.com/xxxx/deployWeb --token AGIAQ3S7N4IAHW7REWDQQP3GZAL7Y 参考链接
    • 运行RUNNER_ALLOW_RUNASROOT=true ./config.sh --url https://github.com/xxxx/deployWeb --token AGIAQ3S7N4IAHW7REWDQQP3GZAL7Y输出Http response code: NotFound from 'POST https://api.github.com/actions/runner-registration' (Request Id: 5EA2:282BC3:355B13:38E34C:66C8062C) {"message":"Not Found","documentation_url":"https://docs.github.com/rest","status":"404"} Response status code does not indicate success: 404 (Not Found). 查token不是静态的,它会很快过期,所以当不立即使用令牌时就会发生这种情况,刷新github页面重置token参数就可以了。参考链接
  • 成功
    ```bash
    RUNNER_ALLOW_RUNASROOT=true ./config.sh --url https://github.com/xxxx/deployWeb --token AGIAQ3TYM6U23HE23X2U3A3GZAKWK

      --------------------------------------------------------------------------------|        ____ _ _   _   _       _          _        _   _                      ||       / ___(_) |_| | | |_   _| |__      / \   ___| |_(_) ___  _ __  ___      ||      | |  _| | __| |_| | | | | '_ \    / _ \ / __| __| |/ _ \| '_ \/ __|     ||      | |_| | | |_|  _  | |_| | |_) |  / ___ \ (__| |_| | (_) | | | \__ \     ||       \____|_|\__|_| |_|\__,_|_.__/  /_/   \_\___|\__|_|\___/|_| |_|___/     ||                                                                              ||                       Self-hosted runner registration                        ||                                                                              |--------------------------------------------------------------------------------# Authentication√ Connected to GitHub# Runner RegistrationEnter the name of the runner group to add this runner to: [press Enter for Default] Enter the name of runner: [press Enter for XXX-dev-test] my-action-runnerThis runner will have the following labels: 'self-hosted', 'Linux', 'X64' Enter any additional labels (ex. label-1,label-2): [press Enter to skip] √ Runner successfully added√ Runner connection is good# Runner settingsEnter name of work folder: [press Enter for _work] /actions-runner√ Settings Saved.```
    
  1. 在你的GitHub Actions workflow中,将 runs-on 指定为 self-hosted后推送项目,Runner运行输出如下:。
    Requested labels: self-hosted
    Job defined at: mingchangge/deployWeb/.github/workflows/deploy.yaml@refs/heads/master
    Waiting for a runner to pick up this job...
    

结束语

到这一步我就没有往下面进行了。因为我突发奇想的要在K8s上运行GitHub Actions的自托管运行器,所以本篇就这样结束了。或许等我把即定目标前端项目自动化部署实现【这个目标目前只完成了K8S及Rancher部署。在K8s上运行GitHub Actions的自托管运行器、私有docker镜像搭建都没有完成啊啊啊啊!!!】,会回头继续补充本篇内容。

删除Runner

删除Runner,我直接将actions-runner文件夹删除了。等回头重新搭建完成,再运行下面的命令吧。

./config.sh remove --token AGIAQ3TS4DIE57KTU7FYPZTGZQE5Q

http://www.ppmy.cn/embedded/105351.html

相关文章

UNO小游戏2

前言 hello&#xff0c;大家好我是文宇。最近也是抽出时间更一期了。 bug还是很多&#xff08;恼&#xff09;&#xff0c;所以就当个乐子看看&#xff0c;反正后面还会有的&#xff0c;先把这玩意儿发了再说。 正文 #include<bits/stdc.h> #include<windows.h>…

解锁万圣节电商狂欢:Newsbreak广告优势下的创意营销秘籍

解锁万圣节电商狂欢&#xff1a;Newsbreak广告优势下的创意营销秘籍 随着万圣节的临近&#xff0c;电商行业的竞争也悄然升温。如何在这场节日盛宴中脱颖而出&#xff0c;吸引消费者的眼球&#xff0c;成为各大商家关注的焦点。Newsbreak作为一款快速崛起的新闻聚合平台&#x…

为什么创世要做SD NAND?

客户需求&#xff0c;客户需求&#xff0c;还是客户需求 最早市面上的NAND存储产品有raw NAND&#xff0c;SPI NAND&#xff0c;TF卡&#xff0c;U盘&#xff0c;EMMC&#xff0c;SSD等。但是这些产品各有各的优势&#xff0c;也各有各的痛点。 客户无数次的跟我们聊&#xff0…

Ascend C算子开发(入门)—— 算子开发初体验

文章目录 Ascend C算子开发&#xff08;入门&#xff09;—— 算子开发初体验Host与Device核函数什么是核函数如何编写核函数&#xff1f; 核函数实现例子——Hello World完整核函数泛讲 Ascend C算子开发&#xff08;入门&#xff09;—— 算子开发初体验 Host与Device Host…

fabricjs 完成橡皮擦

需求&#xff1a;擦除图片上的某些区域&#xff1b; 原理&#xff1a;利用fabric中的自由绘画&#xff0c;绘画完成后&#xff0c;传给后端base64格式的图片 在fabric.js库中&#xff0c;可以自定义铅笔&#xff08;free drawing&#xff09;的颜色和粗细。创建画布后&#xf…

论斜率优化dp

论斜率优化dp 1问题2暴力算法-线性dp3斜率优化线性dp4后记 1问题 如下图 看到这题&#xff0c;题面很复杂 其实可以转化为如下问题 有 n n n个任务&#xff0c;排成一个有序序列&#xff0c;我们要解决这些任务 总费用是每一个任务的完成时间乘以费用系数求和 每个任务之前…

数学基础 -- 线性代数之矩阵的逆

矩阵的逆 矩阵的逆在线性代数中是一个重要的概念&#xff0c;尤其在解线性方程组、矩阵分解、线性变换等领域有广泛应用。逆矩阵的概念和性质类似于实数中的倒数&#xff0c;既给定一个矩阵 A A A&#xff0c;其逆矩阵 A − 1 A^{-1} A−1 满足 A A − 1 I A \times A^{-…

竞赛实战--天池金融风控分类问题

背景 1、金融风控分类问题&#xff0c;作为机器学习竞赛是一个比较好的选择 2、如何进行数据处理 代码 数据分析部分 #!/usr/bin/env python # coding: utf-8import os import gc import numpy as np import pandas as pd import warnings import lightgbm as lgb import c…