GitHub 操作 "No profiles for 'com.xxx.app' were found" 尽管设置了钥匙串
GitHub Actions "No profiles for 'com.xxx.app' were found" Despite keychain setup
我正在处理 GitHub 操作 CI/CD 管道设置,在我的计算机上进行测试后,我无法使其在 Github 操作上运行。
我收到的错误如下:
但是,在调用 gym 之前,我调用了 match:
在此之前,在我的 yaml 文件中调用 create_keychain:
知道为什么找不到配置文件吗?
在调用 match
之前,我最终使用车道 keychain_create 解决了问题
if is_ci
create_keychain(
name: "actions_keychain",
password: "meow",
default_keychain: true,
unlock: true,
timeout: 3600,
lock_when_sleeps: false
)
end
我正在处理 GitHub 操作 CI/CD 管道设置,在我的计算机上进行测试后,我无法使其在 Github 操作上运行。
我收到的错误如下:
但是,在调用 gym 之前,我调用了 match:
在此之前,在我的 yaml 文件中调用 create_keychain:
知道为什么找不到配置文件吗?
在调用 match
之前,我最终使用车道 keychain_create 解决了问题if is_ci
create_keychain(
name: "actions_keychain",
password: "meow",
default_keychain: true,
unlock: true,
timeout: 3600,
lock_when_sleeps: false
)
end