Initial Commit
Some checks failed
CI / deploy (push) Failing after 11m38s

This commit is contained in:
Arindy
2024-10-22 20:53:00 +02:00
commit 7d25553df5
13 changed files with 961 additions and 0 deletions

25
.github/workflows/ci.yaml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: CI
on: [ push ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Maven
uses: s4u/setup-maven-action@v1.15.0
with:
java-version: '17'
java-distribution: 'zulu'
maven-version: '3.9.9'
- name: Build Runner
run: mvn package -Dnative
- name: Build Container
run: docker build -f src/main/docker/Dockerfile.native-micro -t mythodea-api .
# - name: Deploy
# run: "docker compose up -d"