Skip to content

Update default.html

Update default.html #3

Workflow file for this run

name: Generate Sitemap
on:
push:
branches:
- main # or master if your repo uses master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Generate sitemap
uses: cicirello/generate-sitemap@v1
with:
base-url-path: https://mlcom.github.io
include-html: true
- name: Commit and push sitemap
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add sitemap.xml
git commit -m "Update sitemap"
git push