适用于 GitHub Actions 的按需自托管 AWS EC2 运行程序

问题描述 投票:0回答:2
name: On-demand self-hosted AWS EC2 runner for GitHub Actions
uses: machulav/ec2-github-runner@v2
with:

   github-token: *** 
   ec2-instance-type: t2.micro
   ec2-instance-id: i-03d221ab975187b

错误:错误:未指定“模式”输入 错误:未指定“模式”输入 错误:类型错误:无法读取未定义的属性“模式” 错误:无法读取未定义的属性“模式”

任何人都可以给出如何在启动/停止操作中提及模式吗?

amazon-web-services github amazon-ec2 github-actions
2个回答
1
投票
  • 开始 - 开始一个新的跑步者;
  • stop - 停止之前创建的跑步者。

启动模式是指您想要启动一个新的运行程序,即使您宝贵的构建仍在运行。 停止模式意味着您想要停止之前的运行并开始新的运行。

github-token: *** 
ec2-instance-type: t2.micro
ec2-instance-id: i-03d221ab975187b
mode: start

0
投票

如果您不想处理这些生命周期问题,https://sprinters.sh会自动为您解决这个问题。每个作业都会自动在 EC2 位置上获得一个新的临时运行器。作业完成时实例自动终止。

© www.soinside.com 2019 - 2024. All rights reserved.