From 28ae857b6c5037451527ef9e3d50de8a96cc49fa Mon Sep 17 00:00:00 2001 From: Edric Date: Wed, 4 Jan 2023 08:37:03 +0800 Subject: [PATCH] Release v3.1.0 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 82a3ac4..4983559 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Name | Description | Allowed values ```yml steps: - uses: actions/checkout@v2 - - uses: EdricChan03/action-build-deploy-ghpages@v3.0.0 + - uses: EdricChan03/action-build-deploy-ghpages@v3.1.0 with: github_token: ${{ secrets.GITHUB_TOKEN }} # gh_pages_token: ${{ secrets.GH_PAGES_TOKEN }} No longer needed - see https://github.community/t5/GitHub-Actions/Github-action-not-triggering-gh-pages-upon-push/m-p/46519/highlight/true#M6551 for more info @@ -98,7 +98,7 @@ v2+ of this GitHub Action also supports the former environment variables in v1 o ```yml steps: - uses: actions/checkout@v2 - - uses: EdricChan03/action-build-deploy-ghpages@v3.0.0 + - uses: EdricChan03/action-build-deploy-ghpages@v3.1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Or ${{ github.token }} # GH_PAGES_TOKEN: ${{ secrets.GH_PAGES_TOKEN }} @@ -113,7 +113,7 @@ steps: ```yml steps: - uses: actions/checkout@v2 - - uses: EdricChan03/action-build-deploy-ghpages@v3.0.0 + - uses: EdricChan03/action-build-deploy-ghpages@v3.1.0 with: github_token: ${{ secrets.GITHUB_TOKEN }} # The GitHub installation token. Note: You can also use ${{ github.token }} # gh_pages_token: ${{ secrets.GH_PAGES_TOKEN }} # Note: You have to create this yourself - see the "Secrets used" section above for more info (This input does not have a default value - you have to supply this yourself) (As of 15 Feb 2020, this is no longer needed - see https://github.community/t5/GitHub-Actions/Github-action-not-triggering-gh-pages-upon-push/m-p/46519/highlight/true#M6551)