Update GitHub Push actions (#129)

Updated "actions/checkout" from v1 to v2.
Updated "peaceiris/actions-gh-pages" from v2.3.0 to v3.
Cleaned up the "gh-pages" commit messages.
Small cleanup.
This commit is contained in:
Soitora 2020-03-19 23:54:58 +01:00 committed by GitHub
parent d7ce43fc85
commit 832bb6c8d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,16 @@
name: Build and deploy website
on:
push:
branches:
- master
jobs:
deploy:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Install Node v12
uses: actions/setup-node@v1
@ -20,12 +22,15 @@ jobs:
npm install
npm run build
- name: Add nojekyll
- name: Add .nojekyll
run: touch ./public/.nojekyll
- name: Deploy website
uses: peaceiris/actions-gh-pages@v2.3.0
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_branch: gh-pages
publish_dir: ./public
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
commit_message: ${{ github.event.head_commit.message }}