From 21730a7e327776b82fa9873829b9aef84c4e311a Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Fri, 10 Sep 2021 00:01:38 +0900 Subject: [PATCH] docs: Remove github/personal-website --- README.md | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/README.md b/README.md index ec8a65739..77ded6650 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,6 @@ Note that the `GITHUB_TOKEN` that is created by the runner might not inherently - [⭐️ mdBook (Rust)](#%EF%B8%8F-mdbook-rust) - [⭐️ Flutter Web](#%EF%B8%8F-flutter-web) - [⭐️ Elm](#%EF%B8%8F-elm) - - [⭐️ github/personal-website](#%EF%B8%8F-githubpersonal-website) - [⭐️ Swift Publish](#%EF%B8%8F-swift-publish) - [License](#license) - [Maintainer](#maintainer) @@ -319,8 +318,6 @@ For more details about the `CNAME` file, read the official documentation: [Manag If you want GitHub Pages to process your site with the static site generator Jekyll, set `enable_jekyll` to true. -[github/personal-website](https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-githubpersonal-website) is one of the examples using GitHub Pages built-in Jekyll. - By default, this action signals to GitHub Pages that the site shall not be processed with Jekyll. This is done by adding an empty `.nojekyll` file when publishing to the master or gh-pages branch. When a `.nojekyll` file already exists, this action does nothing. Bypassing Jekyll makes the deployment faster and is necessary if you are deploying files or directories that start with underscores, since Jekyll considers these to be special resources and does not copy them to the final site. You only need to set `enable_jekyll` to true when you want to deploy a Jekyll-powered website and let GitHub Pages do the Jekyll processing. @@ -1089,39 +1086,6 @@ jobs: publish_dir: ./public ``` -### ⭐️ github/personal-website - -- [github/personal-website](https://github.com/github/personal-website) - Code that'll help you kickstart a personal website that showcases your work as a software developer. - -```yaml -# .github/workflows/github-pages.yml - -name: GitHub Pages - -on: - push: - branches: - - master - schedule: - - cron: '24 */24 * * *' # Once a day - -jobs: - deploy: - runs-on: ubuntu-20.04 - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - steps: - - uses: actions/checkout@v2 - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./ - allow_empty_commit: true - enable_jekyll: true - cname: github.peaceiris.com -``` - ### ⭐️ Swift Publish An example workflow for [JohnSundell/Publish].