This commit is contained in:
parent
8ec21b41fa
commit
1c24444cd4
1 changed files with 15 additions and 0 deletions
15
.forgejo/workflows/deploy.yml
Normal file
15
.forgejo/workflows/deploy.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
name: FreeVops Deploy
|
||||
on: [push]
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run pitools
|
||||
run: |
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip install -r requirements.txt || echo "No requirements"
|
||||
python3 pitools.py test_v3.prj
|
||||
- name: Deploy to production
|
||||
run: echo "🚀 FreeVops 1.0 DEPLOYED!" && ls -la
|
||||
Loading…
Add table
Add a link
Reference in a new issue