Skip to content

Enumerate themes into a database file 'store.wpdb' #142

Enumerate themes into a database file 'store.wpdb'

Enumerate themes into a database file 'store.wpdb' #142

Workflow file for this run

name: EnumThemes
run-name: Enumerate themes into a database file 'store.wpdb'
on:
push:
branches: [ main ]
paths: Themes/**
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3 # checkout the repository content
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.10' # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install GitPython
- name: execute py script # run main.py
id: getfiles
# arguments: Directory Extension OutputFile
run: python main.py Themes store.wpdb