Update pythonpackage.yml #65
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
on: | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Configure ownership settings to pi user | |
run: sudo chown -R $(id -u):$(id -g) ~/Desktop/flight-hunter | |
- name: Check out the repository to the runner | |
uses: actions/checkout@v4 | |
- name: Copy environment to directory | |
run: cp ~/Desktop/flight-hunter-env/.env ~/Desktop/flight-hunter/.env | |
- name: Python Dependency Installation | |
uses: py-actions/py-dependency-install@v4 |