Skip to content

Merge pull request #35 from wiki-me/patch-3 #82

Merge pull request #35 from wiki-me/patch-3

Merge pull request #35 from wiki-me/patch-3 #82

Workflow file for this run

name: Build and push README to master
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Create local changes
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install
pipenv run python add-metadata.py < template.md > README.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v4