Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.46 KB

File metadata and controls

39 lines (26 loc) · 1.46 KB

upload-release-assets

Uploads one or more asset files to a GitHub release.

🃏Example

steps:
  - uses: giancosta86/aurora-github/actions/upload-release-assets@v10
    with:
      release-tag: v3.0.2
      files: logo.png data.zip
      source-directory: dist

💡How it works

This action calls the gh release upload command to upload the given files.

☑️Requirements

  • The release-tag input must be the tag of an existing release - which could be, for example, the release-tag output of the tag-and-release action.

  • The files input must be passed just like a string of relative file paths on the Bash command line.

📥Inputs

Name Type Description Default value
release-tag string The tag of the target release
files string The relative paths of the asset files to upload
overwrite boolean Overwrite existing assets in the release true
source-directory string Directory containing the files .

🌐Further references