This action downloads an asset from a GitHub release and provides some release details as output. Private repos are supported. I modify orginally @dsaltares/fetch-gh-release-asset to work on composite action insteed docker.
When you use self-hosted github runner in docker, shared directory with workspace doesn't work. So this is why i decade to use composite action.
thx dsaltares for orginal bash script!
Required The GitHub token. Typically this will be ${{ secrets.GITHUB_TOKEN }}
Required The name of the file to be downloaded.
The org/repo
containing the release.
The release version to fetch from in the form tags/<tag_name>
or <release_id>
. Defaults to latest
.
Target file path. Only supports paths to subdirectories of the GitHub Actions workspace directory
The version number of the release tag. Can be used to deploy for example to itch.io
Also called a title of a release. Defaults to the same value as version
if not specified when creating a release.
The body (description) of a release.
uses: paweb88/fetch-gh-release-asset-composite@master
with:
repo: "paweb88/fetch-gh-release-asset"
version: "tags/v0.1.18"
file: "plague-linux.zip"
target: "subdir/plague-linux.zip"
token: ${{ secrets.GITHUB_TOKEN }}
This action only supports Linux runners as this is a docker container action. If you encounter Error: Container action is only supported on Linux
then you are using non-linux runner.