feature/ci-cd #1

Merged
homeburger merged 53 commits from feature/ci-cd into main 2026-02-28 23:04:37 -06:00
Showing only changes of commit c44ebca61f - Show all commits

View File

@@ -18,17 +18,17 @@ jobs:
- name: Login to Registry
run: |
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login yourdomain.com \
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login git.vxbard.net \
-u ${{ secrets.REGISTRY_USERNAME }} \
--password-stdin
- name: Build image
run: |
docker build -t yourdomain.com/owner/frontend:latest .
docker build -t git.vxbard.net/homeburger/agologum-client:latest ./client
- name: Push
run: |
docker push yourdomain.com/owner/frontend:latest
docker push git.vxbard.net/homeburger/agologum-client:latest
- name: Deploy
run: |