Initial Commit
All checks were successful
CI / deploy (push) Successful in 4m40s

This commit is contained in:
Arindy
2024-10-22 20:53:00 +02:00
commit 0e01d1a6ec
16 changed files with 1075 additions and 0 deletions

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

@@ -0,0 +1,24 @@
name: CI
on: [ push ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
- name: Build Runner
run: ./mvnw --no-transfer-progress package -Pnative -Dquarkus.native.remote-container-build=true
- name: Build Container
run: docker build -f src/main/docker/Dockerfile.native-micro -t mythodea-api .
# - name: Deploy
# run: "docker compose up -d"