Skip to content

Merge pull request #6 from cradle8810/html_repair_20240421 #11

Merge pull request #6 from cradle8810/html_repair_20240421

Merge pull request #6 from cradle8810/html_repair_20240421 #11

Workflow file for this run

---
name: Make sitemap.txt
on:
push:
branches:
- 'master'
jobs:
Sitemap_txt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: find html files and output as sitemap.txt
run: |
find . -type f -name "*.html" | \
sed 's#\.\/#http:\/\/hayaworld\.net/#g' | \
sed 's#\/www##g' \
> www/sitemap.txt
- name: View sitemap.txt
run: cat "www/sitemap.txt"
- name: Upload sitemap.txt as artifacts
uses: actions/upload-artifact@v4
with:
name: sitemap.txt
path: www/sitemap.txt