diff --git a/.gitea/gitea-runner.yml b/.gitea/gitea-runner.yml new file mode 100644 index 0000000..080f3d0 --- /dev/null +++ b/.gitea/gitea-runner.yml @@ -0,0 +1,9 @@ +services: + runner: + image: docker.io/gitea/act_runner:latest + environment: + GITEA_INSTANCE_URL: "http://192.168.0.25:3000" + GITEA_RUNNER_REGISTRATION_TOKEN: "IfowioCs4PedXyRJMnedDVCXkRHjyDrZv1sdvaif" + GITEA_RUNNER_NAME: "runner-1" + volumes: + - /var/run/docker.sock:/var/run/docker.sock \ No newline at end of file diff --git a/.gitea/workflows/build-and-deploy.yml b/.gitea/workflows/build-and-deploy.yml new file mode 100644 index 0000000..534ed11 --- /dev/null +++ b/.gitea/workflows/build-and-deploy.yml @@ -0,0 +1,15 @@ +name: Build and Deploy Kotlin gradle Application + +on: + push: + branches: + - working-poc + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Hello world + run: | + echo 'Hello world' + echo 'Done' \ No newline at end of file