Skip to content

Update main.yml

Update main.yml #35

Workflow file for this run

name: Generate requirements.txt
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Automatic requirements.txt for Python Project
uses: ryan-rozario/[email protected]
with:
PROJECT_PATH: '.'
REQUIREMENT_PATH: 'requirements.txt'
- name: Commit and Push requirements.txt
env:
PERSONAL_TOKEN: ${{ secrets.ACCESSTOKEN }}
run: |
git config --global user.name 'BirdsAreFlyingCameras'
git config --global user.email '[email protected]'
git add requirements.txt
git commit -m "Update requirements.txt"
git push https://${{ github.actor }}:${{ env.PERSONAL_TOKEN }}@github.com/BirdsAreFlyingCameras/BirdGlance.git