Run Python on Github Action

Jacky | Feb 7, 2024 min read

前言

記下 Github Action 執行 Python 程式

Example

name: run script.py

on:
  issue:
    - labeled

jobs:
  build:
    runs-on: ubuntu-latest
    steps:

      - name: checkout repo content
        uses: actions/checkout@v2

      - name: setup python
        uses: actions/setup-python@v4
        with:
          python-version: '3.10'

      - name: install python packages
        run: |
          python -m pip install --upgrade pip
          pip install -r requirements.txt          

      - name: run python code
        env:
          SOME_SECRET: ${{ secrets.SOME_SECRET }}
        run: python script.py

      - name: commit files
        run: |
          git config --local user.email "XXX@XXX"
          git config --local user.name "XXX"
          git add -A
          git diff-index --quiet HEAD || (git commit -a -m "updated logs" --allow-empty)          

      - name: push changes
        uses: ad-m/github-push-action@v0.6.0
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          branch: main 

Refer

comments powered by Disqus