feat(ci): add deployment workflow for backend #139

Merged
csimonis merged 7 commits from feat/deployment into main 2025-04-24 10:14:28 +00:00
Showing only changes of commit af005ce019 - Show all commits

View file

@ -15,10 +15,10 @@ jobs:
- name: Build Image
run: docker buildx build -f backend/.docker/Dockerfile -t git.kjan.de/szut/casino-backend:latest backend
- name: Login
uses: actions/login
uses: docker/login-action@v3
jank marked this conversation as resolved Outdated

no use docker login action from here:https://github.com/docker/login-action

no use docker login action from here:https://github.com/docker/login-action
with:
registry: git.kjan.de
username: ${DOCKER_USER}
password: ${DOCKER_PASS}
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Push
run: docker push git.kjan.de/szut/casino-backend:latest