Skip to content

Update socials.yaml (#118) #119

Update socials.yaml (#118)

Update socials.yaml (#118) #119

Workflow file for this run

name: Deploy Jekyll site to Github Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Setup Environment
run: |
sudo apt-get update
sudo apt-get install liblapacke-dev libopenblas-dev
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler: latest
bundler-cache: true
cache-version: 0
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 18
cache: npm
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build site with Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Format HTML and CSS
run: >-
npm ci
npm run html
npm run css
npm run xml
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4