diff options
Diffstat (limited to '.gitea/workflows/deploy.yml')
| -rw-r--r-- | .gitea/workflows/deploy.yml | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..8c3994d --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,9 @@ +name: Deploy +on: [push, pull_request] + +jobs: +  build_and_deploy: +    runs-on: self-hosted +    steps: +      - uses: actions/checkout@v4 +      - run: echo "Deploying to production" | 
