Compare commits
2 Commits
de9175c06c
...
5700e740f8
Author | SHA1 | Date | |
---|---|---|---|
5700e740f8 | |||
af43fa1422 |
17
.gitea/workflows/pull.yaml
Normal file
17
.gitea/workflows/pull.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: Update RSS
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 3 * * *' # daily at 3am
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Explore-Gitea-Actions:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: https://gitea.com/actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: https://gitea.com/actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
||||||
|
with:
|
||||||
|
node-version: lts/*
|
||||||
|
cache: 'npm'
|
||||||
|
- run: npm ci
|
||||||
|
- run: npx nodejsscript cli.js pull
|
@ -1,3 +1,5 @@
|
|||||||
# pagenotfound-cli
|
# pagenotfound-cli
|
||||||
|
|
||||||
Utility primary for generating RSS feed for Pagenotfound
|
Utility primary for generating RSS feed for Pagenotfound
|
||||||
|
|
||||||
|
[RSS](https://gitea.jaandrle.cz/jaandrle/pagenotfound-cli/raw/branch/main/rss.xml)
|
||||||
|
4
cli.mjs
4
cli.mjs
@ -1,8 +1,7 @@
|
|||||||
#!/usr/bin/env -S npx nodejsscript
|
#!/usr/bin/env -S npx nodejsscript
|
||||||
/* jshint esversion: 11,-W097, -W040, module: true, node: true, expr: true, undef: true *//* global echo, $, pipe, s, fetch, cyclicLoop */
|
/* jshint esversion: 11,-W097, -W040, module: true, node: true, expr: true, undef: true *//* global echo, $, pipe, s, fetch, cyclicLoop */
|
||||||
import { JSDOM } from "jsdom";
|
|
||||||
const url_drops= "https://pagenotfound.cz/drop/";
|
const url_drops= "https://pagenotfound.cz/drop/";
|
||||||
const { name, version, description }= s.cat("package.json").xargs(JSON.parse);
|
const { version, description }= s.cat("package.json").xargs(JSON.parse);
|
||||||
/**
|
/**
|
||||||
* @typedef {Object} Article
|
* @typedef {Object} Article
|
||||||
* @property {string} title
|
* @property {string} title
|
||||||
@ -63,6 +62,7 @@ async function toRSS(json){
|
|||||||
"</rss>"
|
"</rss>"
|
||||||
].join("\n")).to(path);
|
].join("\n")).to(path);
|
||||||
}
|
}
|
||||||
|
import { JSDOM } from "jsdom";
|
||||||
async function sitemap(){
|
async function sitemap(){
|
||||||
const path= "sitemap.json";
|
const path= "sitemap.json";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user