diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml new file mode 100644 index 0000000..0154d3a --- /dev/null +++ b/.forgejo/workflows/deploy.yml @@ -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