This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
Bump word-wrap from 1.2.3 to 1.2.4 (#158) #117
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 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.1.0 | |
with: | |
persist-credentials: false | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install lxml | |
- name: Build | |
run: | | |
cd dev-progress | |
./generate.py | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@4.1.8 | |
with: | |
branch: gh-pages | |
folder: dev-progress/dist |