-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This entrypoint supports: - Updating/Uploading of build-artifacts - Updating/Uploading a local files - Removing assets from a GitHub Release - Downloading assets from a GitHub Release
- Loading branch information
1 parent
0ba4958
commit 5985001
Showing
18 changed files
with
18,554 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# SPDX-FileCopyrightText: 2023 Kevin de Jong <monkaii@hotmail.com> | ||
# | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
name: 'ReleaseMe - Update GitHub Release Assets' | ||
author: 'Kevin de Jong' | ||
description: > | ||
Uploads (or updates) assets to a GitHub Release. | ||
branding: | ||
icon: 'code' | ||
color: 'white' | ||
|
||
inputs: | ||
token: | ||
description: 'GitHub token used to access GitHub (eg. github.token)' | ||
required: false | ||
|
||
artifacts: | ||
description: 'Multiline list of artifact names, uploaded as part of the current workflow run, to upload as a GitHub Release asset' | ||
required: false | ||
|
||
files: | ||
description: 'Multiline list of files (paths) to upload as a GitHub Release asset' | ||
required: false | ||
|
||
remove: | ||
description: 'Multiline list of GitHub Asset label to remove from the GitHub Release assets' | ||
required: false | ||
|
||
download: | ||
description: 'Multiline list of GitHub Asset labels to download from the GitHub Release' | ||
required: false | ||
|
||
release-id: | ||
description: 'Release ID associated with the GitHub Release to update' | ||
required: true | ||
|
||
runs: | ||
using: 'node16' | ||
main: '../lib/assets/index.js' |
Oops, something went wrong.