SpicyPizza/create-envfile

Error: docker: command not found

huseyinalp opened this issue · 1 comments

It throws following error when build starts;
Build container for action use: '/root/actions-runner/_work/_actions/SpicyPizza/create-envfile/v1.1/Dockerfile'.
Error: docker: command not found

Workflow file like below;
name: Continuous Deployment

on:
push:
branches:
- develop

jobs:
deployment:
runs-on: self-hosted
steps:
- name: Checkout develop branch
uses: actions/checkout@v2
with:
ref: develop

  - name: Setup Node.js
    uses: actions/setup-node@v1
    with:
      node-version: 12
  - name: Make envfile for vendure server
    uses: SpicyPizza/create-envfile@v1.1
    with:
      envkey_DEBUG: true
      envkey_DB: "postgres"
      ...

I would guess that you don't have Docker installed on your self-hosted runner. Please re-open this issue if this was not the answer.