add missing logos #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |