Skip to content

Delete CNAME

Delete CNAME #17

Workflow file for this run

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: install dep
run: pip install markdown
- name: build
run: python build.py
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "namanambavi"
git add -A
git commit -m "Build Docs"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.TOKEN }}
branch: ${{ github.ref }}