【发布时间】:2020-12-15 04:19:01
【问题描述】:
我正在尝试在 GitHub Actions 上使用复合运行步骤操作,如 here 所述,以便在不同的工作流程中重用它们。 但是,我收到了错误:
An action could not be found at the URI 'https://api.github.com/repos/scripts/build_ubuntu/tarball/v1
我的主要工作流程 (.github/workflows/BuildUbuntu.yml) 如下:
[...]
jobs:
ubuntu_build_appimage:
name: Build MeshLab (Ubuntu - AppImage)
runs-on: ubuntu-16.04
steps:
- uses: scripts/build_ubuntu@v1
[...]
复合步骤(.github/workflows/scripts/build_ubuntu/action.yml)如下:
runs:
using: "composite"
steps:
- uses: actions/checkout@v2
with:
submodules: true
[other steps...]
我做错了什么?
以下是链接: GitHub CommitWorkflow
【问题讨论】:
标签: github github-actions