Improve clarification about communication methods in episode 3 #79
Workflow file for this run
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: Website | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: null | |
jobs: | |
build-setup: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout the lesson | |
uses: actions/checkout@v2 | |
- name: Setup Git | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8.16" | |
- name: Install Python modules | |
run: | | |
python3 -m pip install --upgrade pip setuptools wheel | |
python3 -m pip install -r requirements.txt | |
- name: Install sys deps | |
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev | |
- name: Run build scripts | |
run: | | |
bash bin/build_me.sh | |
- name: Deploy the website to gh-pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: "." | |
token: ${{ secrets.GITHUB_TOKEN }} |