Skip to content

Instantly share code, notes, and snippets.

@kuc-arc-f
Last active March 1, 2021 00:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuc-arc-f/28041e38a64dcbfe7b2e8244c58656b1 to your computer and use it in GitHub Desktop.
Save kuc-arc-f/28041e38a64dcbfe7b2e8244c58656b1 to your computer and use it in GitHub Desktop.
Github Action ,schedule set test gh-pages.yml
name: github pages
on:
schedule:
- cron: '0 0 * * *'
jobs:
build-deploy:
runs-on: ubuntu-18.04
env:
MY_SITE_NAME: CMS Sample3
steps:
- uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: install
run: yarn install --frozen-lockfile
- name: build
run: yarn build
- name: export
run: yarn export
- name: add nojekyll
run: touch ./out/.nojekyll
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment