Skip to content

Updated newly generated xml files #400

Updated newly generated xml files

Updated newly generated xml files #400

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Generate static site
run: python app.py build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GH_PAGES_TOKEN }} # Use personal_token instead of github_token
publish_dir: ./build
publish_branch: main
external_repository: bitcoinsearch/mailing-list-summaries-site
cname: feed.bitcoinsearch.xyz