Skip to content

change submission date #7

change submission date

change submission date #7

Workflow file for this run

name: Deploy Jekyll site to GitHub Pages
on:
push:
branches:
- main # 或者你的默认分支
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.2' # 设置你的 Ruby 版本
- name: Install Bundler
run: |
gem install bundler -v 2.5.11
- name: Install dependencies
run: bundle install
- name: Build Jekyll site
run: bundle exec jekyll build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site