Workflow config file is invalid. Please check your config file: yaml: line 6: found a tab character that violates indentation
|
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- run: curl -fSL "https://github.com/genuinetools/img/releases/download/v0.5.11/img-linux-amd64" -o "/usr/local/bin/img" \
|
|
&& chmod a+x "/usr/local/bin/img"
|
|
- uses: actions/checkout@v4
|
|
- run: img build .
|