Skip to content

Update Sitemap

Update Sitemap #17552

Workflow file for this run

name: Update Sitemap
on:
workflow_dispatch:
schedule:
- cron: "0 * * * *"
push:
branches: [main]
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Sitemap
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "npm"
- run: npm install
- run: npm start
- uses: mikeal/publish-to-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: "main"