try to use docker inside node image
Some checks failed
default / build-and-deploy (push) Failing after 13s

This commit is contained in:
Pavel 2025-03-30 17:17:57 +03:00
parent 0e1cb1e4d9
commit 1cd7e8ea5e

View file

@ -8,22 +8,18 @@ on:
jobs:
build-and-deploy:
runs-on: docker
container:
image: docker:dind
options: --privileged
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}
GITHUB_REPOSITORY_NAME: ${{ github.repository_name }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_SERVER_URL: https://git.neur0tx.site
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Docker
run: |
apt-get update && apt-get install -y docker.io curl
service docker start
timeout 15 sh -c "until docker info; do sleep 1; done"
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
with: