I am trying to use a composite run steps action on GitHub Actions, as described here, in order to reuse them in different workflows. However, I am getting the error:
An action could not be found at the URI 'https://api.github.com/repos/scripts/build_ubuntu/tarball/v1
My main workflow (.github/workflows/BuildUbuntu.yml) is the following:
[...]
jobs:
ubuntu_build_appimage:
name: Build MeshLab (Ubuntu - AppImage)
runs-on: ubuntu-16.04
steps:
- uses: scripts/build_ubuntu@v1
[...]
And the composite step (.github/workflows/scripts/build_ubuntu/action.yml) is the following:
runs:
using: "composite"
steps:
- uses: actions/checkout@v2
with:
submodules: true
[other steps...]
What am I doing wrong?
Here are the links: GitHub Commit Workflow