Skip to content

update +_posts/Tech/OperationSystem/2018-03-17-操作系统复习笔记.md #1170

update +_posts/Tech/OperationSystem/2018-03-17-操作系统复习笔记.md

update +_posts/Tech/OperationSystem/2018-03-17-操作系统复习笔记.md #1170

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [master]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Set Ruby 3.1
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install and Build
run: |
gem install bundler
bundle install
bundle exec jekyll build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.6.2
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: built
FOLDER: _site
CLEAN: true