Skip to content

Merge branch 'main' of https://github.com/ustc-ivclab/ustc-ivclab.git… #301

Merge branch 'main' of https://github.com/ustc-ivclab/ustc-ivclab.git…

Merge branch 'main' of https://github.com/ustc-ivclab/ustc-ivclab.git… #301

Workflow file for this run

---
"on":
push:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: ruby/[email protected]
with:
ruby-version: "3.0"
bundler-cache: true
- uses: actions/configure-pages@v2
id: pages
- name: Build with Jekyll
run: >
bundle exec jekyll build --baseurl
"${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- uses: actions/upload-pages-artifact@v1
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/deploy-pages@v1
id: deployment