💄 style(workflow): remove excessive blank lines in build.yml
Some checks failed
build-and-push / sonar (push) Has been skipped
build-and-push / docker (push) Has been skipped
build-and-push / lint (push) Failing after 52s

- clean up excessive blank lines for improved readability and maintenance
This commit is contained in:
nocci 2026-01-08 13:01:30 +00:00
parent 3746f9be49
commit b9280ef8bf

View file

@ -90,73 +90,13 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Login to registry - name: Login to registry
run: echo "${{ secrets.REG_TOKEN }}" | docker login "${{ secrets.REGISTRY }}" -u "${{ secrets.REG_USER }}" --password-stdin run: echo "${{ secrets.REG_TOKEN }}" | docker login "${{ secrets.REGISTRY }}" -u "${{ secrets.REG_USER }}" --password-stdin
- name: Build image - name: Build image
run: | run: |
docker buildx build --load \ docker buildx build --load \
-t "${{ secrets.REGISTRY_IMAGE }}:${{ env.IMAGE_TAG }}" . -t "${{ secrets.REGISTRY_IMAGE }}:${{ env.IMAGE_TAG }}" .
- name: Push image - name: Push image
run: | run: |
docker push "${{ secrets.REGISTRY_IMAGE }}:${{ env.IMAGE_TAG }}" docker push "${{ secrets.REGISTRY_IMAGE }}:${{ env.IMAGE_TAG }}"