Skip to content

Update status.yml

Update status.yml #83

name: Deploy to Github
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.6.4
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.4
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
pip install -r requirements.txt
bundle install
- name: Build the data and site
run: |
make build_data
make build_site
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.TOKEN }}
BRANCH: gh-pages
FOLDER: _site
CLEAN: true