Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong info displayed #4

Merged
merged 3 commits into from
Jan 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
build:
# ...
steps:
- uses: AButler/upload-release-assets@v1.0
- uses: AButler/upload-release-assets@v2.0
with:
files: 'artifacts/*,packages/*.nupkg'
files: 'artifacts/*;packages/*.nupkg'
repo-token: ${{ secrets.GITHUB_TOKEN }}
```

### Inputs

| Name | Description | Examples |
|---------------|-------------------------------------------------------------------------------------------------|----------------------------------------------------------|
| `files` | The glob of files to upload (comma-separate multiple globs) | `file.txt` <br> `file*.txt` <br> `file_{a,b}.txt;*.json` |
| Name | Description | Examples |
|---------------|---------------------------------------------------------------------------------------------------|----------------------------------------------------------|
| `files` | The glob of files to upload (semicolon separate multiple globs) | `file.txt` <br> `file*.txt` <br> `file_{a,b}.txt;*.json` |
| `repo-token` | The GitHub token to use to amend the release _(recommended to use `${{ secrets.GITHUB_TOKEN }}`)_ | `${{ secrets.GITHUB_TOKEN }}` |
| `release-tag` | _(Optional)_ Specify the tag of the release to upload to | `v1.0.0` |
| `release-tag` | _(Optional)_ Specify the tag of the release to upload to | `v1.0.0` |