This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🖥️ Angular Blog Compile && Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
Compile-Deploy-Angular-Project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🧳 Checkout repository |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fs from "fs-extra"; | |
import xml from "xml"; | |
import { load } from "cheerio"; | |
import xmlFormat from "xml-formatter"; | |
import { marked } from "marked"; | |
import { POSTLIST } from "./post-list.js"; | |
const blogUrl: string = "https://arkandas.com/"; | |
const feedName: string = "feed.rss"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# ---- RUN ---- | |
# python3 main.py --header MyHeader --version 1.0.1 --path /home/user/pathToFile/CHANGELOG.md | |
# ------------- | |
import argparse | |
import re | |
from datetime import datetime |