use docker-in-docker
Some checks failed
default / build-and-deploy (push) Failing after 8s

This commit is contained in:
Pavel 2025-03-30 17:07:00 +03:00
parent d1dd661b9a
commit 1868e82330

View file

@ -8,10 +8,18 @@ on:
jobs:
build-and-deploy:
runs-on: docker
container:
image: docker:dind
options: --privileged
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
@ -22,6 +30,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest
@ -29,5 +38,4 @@ jobs:
if: ${{ success() }}
run: |
apk add --no-cache curl
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}
container: alpine:latest
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}