pipe
All checks were successful
Check scripts syntax / check-scripts-syntax (push) Successful in 4s

This commit is contained in:
2025-08-16 22:07:31 -03:00
parent 7c01b5c8af
commit 4b323f5833

View File

@@ -23,9 +23,13 @@ jobs:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Docker
run: |
sudo apt-get update
sudo apt-get install -y docker.io
- name: Log in to Container Registry
run: |
apt-get update && apt-get install -y docker
echo "${{ secrets.REGISTRY_PASSWORD }}" \
| docker login "${{ env.REGISTRY_HOST }}" \
-u "${{ env.REGISTRY_USERNAME }}" \
@@ -59,6 +63,11 @@ jobs:
-u "${{ env.REGISTRY_USERNAME }}" \
--password-stdin
- name: Display Directory Structure
run: |
echo "Current directory structure:"
ls -lR .
- name: Build and Push Image
run: |
TAG=latest