Skip to content

Add kxxt's blog

Add kxxt's blog #41

Workflow file for this run

name: 'Build & Validate OPML file'
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install lxml beautifulsoup4
- name: Build Opml
env:
OPML_TITLE: "TUNA Blogroll"
run: |
.build/buildOpml.sh > site/opml.xml
.build/validator.py site/opml.xml || true
- name: Upload Pages Artifact
if: ${{ github.ref == 'refs/heads/master' }}
uses: actions/upload-pages-artifact@v3
with:
path: site/
deploy:
if: ${{ github.ref == 'refs/heads/master' }}
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4