From ef47cb7f8a22ed76b68fa6582fa21a97f4d7e609 Mon Sep 17 00:00:00 2001 From: James Ives Date: Sat, 12 Sep 2020 18:47:48 -0400 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a7b3ec3c..534de5ea 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ jobs: npm run build - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@3.6.0 + uses: JamesIves/github-pages-deploy-action@3.6.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages # The branch the action should deploy to. @@ -187,7 +187,7 @@ With this configured you must add the `ssh-agent` step to your workflow and set ssh-private-key: ${{ secrets.DEPLOY_KEY }} - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@3.6.0 + uses: JamesIves/github-pages-deploy-action@3.6.1 with: SSH: true BRANCH: gh-pages @@ -223,7 +223,7 @@ jobs: ssh-private-key: ${{ secrets.DEPLOY_KEY }} - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@3.6.0 + uses: JamesIves/github-pages-deploy-action@3.6.1 with: BASE_BRANCH: master BRANCH: gh-pages @@ -290,7 +290,7 @@ jobs: name: site - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@3.6.0 + uses: JamesIves/github-pages-deploy-action@3.6.1 with: ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} BRANCH: gh-pages @@ -312,7 +312,7 @@ If you use a [container](https://help.github.com/en/actions/automating-your-work apt-get update && apt-get install -y rsync - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@3.6.0 + uses: JamesIves/github-pages-deploy-action@3.6.1 ``` ---