什么是github动作,等同于ci的add_ssh_keys

问题描述 投票:1回答:1

CircleCI中,我们需要add_ssh_keys才能访问不在组织中的另一个私有存储库。

我们在作业中使用fastlane match,所以这不是简单的结帐。

例如

- add_ssh_keys:
    fingerprints:
      - "SO:ME:FIN:G:ER:PR:IN:T"

您如何在GitHub Actions中做到这一点?

github-actions fastlane-match
1个回答
1
投票

您可以使用install SSH key action。只要确保您在Matchfile中使用的是SSH git URL,而不是HTTPS URL。

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