Skip to content

update +_posts/Tech/algorithms/2018-03-13-动态规划之最大连续子序列和子序列积及递增序列.md #974

update +_posts/Tech/algorithms/2018-03-13-动态规划之最大连续子序列和子序列积及递增序列.md

update +_posts/Tech/algorithms/2018-03-13-动态规划之最大连续子序列和子序列积及递增序列.md #974

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: actions/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