Skip to content

add missing logos

add missing logos #45

Workflow file for this run

name: Build and Deploy to Github Pages
on:
push:
branches:
- master
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Build Jekyll site 🔨
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll \
-e BUNDLE_GEMFILE=site/Gemfile \
jekyll/builder:4.2.0 \
/bin/bash -c 'chmod 777 /srv/jekyll && bundle install && bundle exec jekyll build --source site'
- name: Deploy to GH Pages 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _site