run main.py #29
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: run main.py | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'branch name' | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v2 # checkout the repository content to github runner | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' # install the python version needed | |
- name: install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install bs4 | |
pip install pandas | |
pip install frictionless | |
- name: execute py script # run main.py | |
run: python mdain.py | |
#- name: commit and push changes | |
# run: | | |
# git config --local user.email "[email protected]" | |
# git config --local user.name "Github Action" | |
# git add . | |
# git commit -m "run action from main branch" | |
# git push origin ${{ github.event.inputs.branch }} |