Test login
Some checks failed
Sonar / SonarQube (push) Successful in 51s
Sonar / Docker stuff (push) Failing after 23s

This commit is contained in:
Liviu Burcusel 2025-12-10 11:58:24 +01:00
parent f5677191c5
commit 22fec69564
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C

View file

@ -10,6 +10,8 @@ on:
branches:
- production
types: [opened, synchronize, reopened]
env:
FORGEJO_HOST: git.burcusel.nl
jobs:
sonarqube:
name: SonarQube
@ -67,14 +69,20 @@ jobs:
with:
name: output
path: ./output
- name: check docker
run: |
docker --version
docker info
- name: Build Docker image (pray)
run: |
docker build -f ./devops/Dockerfile -t glowing-fiesta:latest .
- name: List Docker images (for verification)
run: docker images
- name: Login to the registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.PACKAGING_TOKEN }}
# - name: check docker
# run: |
# docker --version
# docker info
# - name: Build Docker image (pray)
# run: |
# docker build -f ./devops/Dockerfile -t glowing-fiesta:latest .
# - name: List Docker images (for verification)
# run: docker images
####