docs
This commit is contained in:
parent
7d73be4642
commit
277fc31266
46
README.md
46
README.md
@ -1,9 +1,46 @@
|
|||||||
|
|
||||||
# action gh-release [](https://github.com/softprops/action-gh-release/actions)
|
# action gh-release [](https://github.com/softprops/action-gh-release/actions)
|
||||||
|
|
||||||
|
|
||||||
A GitHub Action for creating GitHub Releases
|
A GitHub Action for creating GitHub Releases
|
||||||
|
|
||||||
## Usage
|
## 🤸 Usage
|
||||||
|
|
||||||
|
### 🚥 Limit releases to pushes to tags
|
||||||
|
|
||||||
|
Typically usage of this action involves adding a step to a build that
|
||||||
|
is gated pushes to git tags. You may find `step.if` field helpful in accomplishing this
|
||||||
|
as it maximizes the resuse value of your workflow for non-tag pushes.
|
||||||
|
|
||||||
|
Below is a simple example of `step.if` tag gating
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: Main
|
||||||
|
|
||||||
|
on: push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
- name: Release
|
||||||
|
uses: docker://softprops/action-gh-release
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### ⬆️ Uploading release assets
|
||||||
|
|
||||||
|
You can can configure a number of options for your
|
||||||
|
GitHub release and all are optional.
|
||||||
|
|
||||||
|
A common case for GitHub releases is to upload your binary after its been validated and packaged.
|
||||||
|
Use the `with.files` input to declare a comma-separated list of glob expressions matching the files
|
||||||
|
you wish to upload to GitHub releases. If you'd like you can just list the files by name directly.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: Main
|
name: Main
|
||||||
@ -18,6 +55,8 @@ jobs:
|
|||||||
uses: actions/checkout@master
|
uses: actions/checkout@master
|
||||||
- name: Build
|
- name: Build
|
||||||
run: echo ${{ github.sha }} > Release.txt
|
run: echo ${{ github.sha }} > Release.txt
|
||||||
|
- name: Test
|
||||||
|
run: cat Release.txt
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: docker://softprops/action-gh-release
|
uses: docker://softprops/action-gh-release
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
@ -26,9 +65,12 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
```
|
```
|
||||||
|
### 💅 Customizing
|
||||||
|
|
||||||
## inputs
|
## inputs
|
||||||
|
|
||||||
|
The following are optional as `step.with` keys
|
||||||
|
|
||||||
| Name | Type | Description |
|
| Name | Type | Description |
|
||||||
|---------|---------|---------------------------------------------------------------|
|
|---------|---------|---------------------------------------------------------------|
|
||||||
| `body` | String | Text communicating notable changes in this release |
|
| `body` | String | Text communicating notable changes in this release |
|
||||||
@ -38,6 +80,8 @@ jobs:
|
|||||||
|
|
||||||
## environment variables
|
## environment variables
|
||||||
|
|
||||||
|
The following are *required* as `step.env` keys
|
||||||
|
|
||||||
| Name | Description |
|
| Name | Description |
|
||||||
|----------------|--------------------------------------|
|
|----------------|--------------------------------------|
|
||||||
| `GITHUB_TOKEN` | GITHUB_TOKEN as provided by `secrets`|
|
| `GITHUB_TOKEN` | GITHUB_TOKEN as provided by `secrets`|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user