update changelog
This commit is contained in:
parent
d2e9e54ff2
commit
29058f2f68
2 changed files with 7 additions and 5 deletions
|
@ -4,4 +4,6 @@
|
|||
|
||||
## 0.1.1
|
||||
|
||||
* Add support for publishing releases on all supported virtual hosts
|
||||
* Add support for publishing releases on all supported virtual hosts
|
||||
|
||||
You'll need to remove `docker://` prefix and use the `@v1` action tag
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
@ -52,7 +52,7 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release
|
||||
uses: softprops/action-gh-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
```
|
||||
|
@ -85,7 +85,7 @@ jobs:
|
|||
- name: Test
|
||||
run: cat Release.txt
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
files: Release.txt
|
||||
|
@ -113,7 +113,7 @@ jobs:
|
|||
- name: Generate Changelog
|
||||
run: echo "# Good things have arrived" > ${{ github.workflow }}-CHANGELOG.txt
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
with:
|
||||
body_path: ${{ github.workflow }}-CHANGELOG.txt
|
||||
|
|
Loading…
Reference in a new issue