Compare commits

..

4 Commits

Author SHA1 Message Date
b7e450da2a update readme 2020-01-05 18:05:29 -05:00
6195d81339 bump version 2020-01-05 18:04:21 -05:00
2803ccaf23 updated changelog 2020-01-05 18:03:54 -05:00
c66575c5e3 try ncc for packaging (#37)
* try ncc for packaging

* consistent

* newer checkout

* update dist

* update deps

* check style a different way
2020-01-05 18:00:23 -05:00
3 changed files with 10 additions and 8 deletions

View File

@ -1,5 +1,9 @@
## 0.1.4
* Added support for updating releases body [#36](https://github.com/softprops/action-gh-release/pull/36)
## 0.1.4
* Steps can now access the url of releases with the `url` output of this Action [#28](https://github.com/softprops/action-gh-release/pull/28)
* Added basic GitHub API retry support to manage API turbulance [#26](https://github.com/softprops/action-gh-release/pull/26)

View File

@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
env:
@ -94,7 +94,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Build
run: echo ${{ github.sha }} > Release.txt
- name: Test
@ -120,7 +120,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Build
run: echo ${{ github.sha }} > Release.txt
- name: Test
@ -154,7 +154,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Generate Changelog
run: echo "# Good things have arrived" > ${{ github.workflow }}-CHANGELOG.txt
- name: Release
@ -192,8 +192,6 @@ The following outputs can be accessed via `${{ steps.<step-id>.outputs }}` from
| `url` | String | Github.com URL for the release |
#### environment variables
The following are *required* as `step.env` keys

View File

@ -1,6 +1,6 @@
{
"name": "action-gh-release",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"description": "GitHub Action for creating GitHub Releases",
"main": "lib/main.js",