Skip to content

feat: Add preprint (and option for arxiv link) #227

feat: Add preprint (and option for arxiv link)

feat: Add preprint (and option for arxiv link) #227

Workflow file for this run

name: CD
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build website
run: JEKYLL_ENV=production bundle exec jekyll build --lsi
- name: Create .nojekyll file
run: touch _site/.nojekyll
- name: Upload the docs
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: _site/
clean-exclude: |
.nojekyll
CNAME
- name: Tell google to reindex
run: curl "https://www.google.com/ping?sitemap=https://${{ secrets.WWW_DIR }}/sitemap.xml"