-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (36 loc) · 1.18 KB
/
actions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 }}