change schema and add references to prompt class #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Modernizer Image and restart Pod | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: | | |
docker build -t registry.tech4comp.dbis.rwth-aachen.de/rwthacis/modernizer:latest . | |
- name: Push to registry | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PW: ${{ secrets.DOCKER_PW }} | |
run: | | |
docker login -u $DOCKER_USERNAME -p $DOCKER_PW registry.tech4comp.dbis.rwth-aachen.de | |
docker push registry.tech4comp.dbis.rwth-aachen.de/rwthacis/modernizer:latest | |
rollout: | |
needs: build | |
name: Rollout and Restart Modernizer Deployment | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
kubectl.exe rollout restart deployment modernizer-backend-deployment |