From 29058f2f6821ebf3af3c5b1393ba8c931ee73f78 Mon Sep 17 00:00:00 2001 From: softprops Date: Mon, 9 Sep 2019 21:35:52 +0900 Subject: [PATCH] update changelog --- CHANGELOG.md | 4 +++- README.md | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd53730..ca97603 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,4 +4,6 @@ ## 0.1.1 -* Add support for publishing releases on all supported virtual hosts \ No newline at end of file +* Add support for publishing releases on all supported virtual hosts + +You'll need to remove `docker://` prefix and use the `@v1` action tag \ No newline at end of file diff --git a/README.md b/README.md index 1f9c7db..29a5174 100644 --- a/README.md +++ b/README.md @@ -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