first commit
Some checks failed
Docker / build (push) Failing after 18s

This commit is contained in:
Sthope 2025-03-18 20:10:00 +01:00
parent 9bb093caad
commit be7665d2e8

View File

@ -24,6 +24,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
@ -31,7 +34,11 @@ jobs:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Build and push Docker image
- name: Build Docker Image
run: docker build -t ${{ env.IMAGE_NAME }} .
- name: Push Docker Image
run: docker push ${{ env.REGISTRY }}/${{ secrets.DOCKER_USER }}/${{ env.IMAGE_NAME }}:${{ env.RELEASE }}