Default asset_name to the original file name (fixes #4)

This commit is contained in:
Sven-Hendrik Haase 2020-07-03 09:17:13 +02:00
parent c0f4101399
commit 588487bf09
No known key found for this signature in database
GPG Key ID: 39E4B877E62EB915
4 changed files with 18 additions and 17 deletions

View File

@ -9,11 +9,12 @@ You must provide:
- `repo_token`: Usually you'll want to set this to `${{ secrets.GITHUB_TOKEN }}`.
- `file`: A local file to be uploaded as the asset.
- `asset_name`: The name the file gets as an asset on a release. Use `$tag` to include the tag name.
- `tag`: The tag to upload into. If you want the current event's tag, use `${{ github.ref }}` (the `refs/tags/` prefix will be automatically stripped).
Optional Arguments
- `asset_name`: The name the file gets as an asset on a release. Use `$tag` to include the tag name. When not provided it will default to the filename.
This is not used if `file_glob` is set to `true`.
- `file_glob`: If set to true, the file argument can be a glob pattern (`asset_name` is ignored in this case) (Default: `false`)
- `overwrite`: If an asset with the same name already exists, overwrite it (Default: `false`).
- `prerelease`: Mark the release as a pre-release (Default: `false`).

View File

@ -6,25 +6,24 @@ branding:
color: orange
inputs:
repo_token:
description: 'GitHub token'
description: 'GitHub token.'
required: true
file:
description: 'Local file to upload'
required: true
asset_name:
description: 'Name of the asset'
description: 'Local file to upload.'
required: true
tag:
description: 'Tag to use as a release'
description: 'Tag to use as a release.'
required: true
asset_name:
description: 'Name of the asset. When not provided will use the file name. Unused if file_glob is set to "true".'
overwrite:
description: 'Overwrite the release in case it already exists'
description: 'Overwrite the release in case it already exists.'
file_glob:
description: 'If true the file can be a glob pattern, asset_name is ignored if this is true'
description: 'If true the file can be a glob pattern, asset_name is ignored if this is true.'
prerelease:
description: 'Mark the release as a pre-release'
description: 'Mark the release as a pre-release.'
body:
description: 'Content of the release text'
description: 'Content of the release text.'
outputs:
browser_download_url:
description: 'The publicly available URL of the asset.'

6
dist/index.js vendored
View File

@ -2284,9 +2284,9 @@ function run() {
}
}
else {
const asset_name = core
.getInput('asset_name', { required: true })
.replace(/\$tag/g, tag);
const asset_name = core.getInput('asset_name') !== ''
? core.getInput('asset_name').replace(/\$tag/g, tag)
: path.basename(file);
const asset_download_url = yield upload_to_release(release, file, asset_name, tag, overwrite, octokit);
core.setOutput('browser_download_url', asset_download_url);
}

View File

@ -131,9 +131,10 @@ async function run(): Promise<void> {
core.setFailed('No files matching the glob pattern found.')
}
} else {
const asset_name = core
.getInput('asset_name', {required: true})
.replace(/\$tag/g, tag)
const asset_name =
core.getInput('asset_name') !== ''
? core.getInput('asset_name').replace(/\$tag/g, tag)
: path.basename(file)
const asset_download_url = await upload_to_release(
release,
file,