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