From 1a1310886515195d8b9052e68aec5a973dd3779d Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Wed, 5 Feb 2020 17:12:51 +0900 Subject: [PATCH] docs: update for v3 --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e2aaad24e..3aa5be0f3 100644 --- a/README.md +++ b/README.md @@ -811,8 +811,8 @@ on: - master jobs: - build-deploy: - runs-on: ubuntu-latest + deploy: + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 @@ -830,11 +830,10 @@ jobs: # provide --output= option for `elm make` and remove this step - name: Deploy - uses: peaceiris/actions-gh-pages@v2 - env: - ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} - PUBLISH_BRANCH: gh-pages - PUBLISH_DIR: ./public + uses: peaceiris/actions-gh-pages@v3 + with: + deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + publish_dir: ./public ``` ## License