| 123456789101112131415161718192021222324252627282930313233343536 | 
							- name: build-nginx-1-24
 
- on: workflow_dispatch
 
- jobs:
 
-   nginx-1-18:
 
-     runs-on: ubuntu-latest
 
-     steps:
 
-       -
 
-         name: Checkout
 
-         uses: actions/checkout@v5
 
-         with:
 
-           ref: release/next
 
-       -
 
-         name: Set up QEMU
 
-         uses: docker/setup-qemu-action@v3
 
-       -
 
-         name: Set up Docker Buildx
 
-         uses: docker/setup-buildx-action@v3
 
-       -
 
-         name: Login to DockerHub
 
-         uses: docker/login-action@v3 
 
-         with:
 
-           username: ${{ secrets.DOCKERHUB_USERNAME }}
 
-           password: ${{ secrets.DOCKERHUB_TOKEN }}
 
-       -
 
-         name: Build and push
 
-         id: docker_build
 
-         uses: docker/build-push-action@v6
 
-         with:
 
-           context: images/nginx/1.24
 
-           platforms: linux/amd64,linux/arm64
 
-           push: true
 
-           tags: |
 
-             markoshust/magento-nginx:1.24
 
-             markoshust/magento-nginx:1.24-1
 
 
  |