Python Script #268
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
# This is a basic workflow to help you get started with Actions | |
name: Python Script | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow to run at 10am UTC, or 5am EST | |
schedule: | |
- cron: "0 10 * * *" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
# this Action should follow steps to set up Python build environment | |
- name: Install Python dependencies | |
uses: py-actions/py-dependency-install@v4 | |
# Runs a single command using the runners shell | |
- name: Run video update python | |
env: | |
YOUTUBE: ${{ secrets.YOUTUBE }} | |
run: python main.py | |
- name: setup git config | |
run: | | |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
- name: commit | |
run: | | |
# Stage the file, commit and push | |
git add index.html StemVideo.db | |
git commit -m "new html commit" | |
git push origin main |