Skip to content

fix master.yml? (?)

fix master.yml? (?) #2

Workflow file for this run

name: generate md
on: [push]
jobs:
generatemd:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: execute py script
run: |
python rc2md.py
git config user.name github-actions
git config user.email [email protected]
git add README.md
git commit -m "Update docs"
git push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}