-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (38 loc) · 948 Bytes
/
manual2.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
46
47
48
name: Get StreamLink Live
on:
schedule:
- cron: '0 0/1 * * *'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: config
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
- name: Install Python
run: |
pip install bs4
pip install pandas
pip install docx2txt==0.8
pip install PyPDF2
pip install PySimpleGUI
pip install tkinter
pip install gTTS
pip install playsound
pip install SpeechRecognition
- name: teste2.py
run: python teste2.py
- name: git add
run: |
git add -A
ls -la
- name: commit & push
run: |
git commit -m "links atualizados"
git push