test-actions/.forgejo/workflows/manual.yml
niblock d95a1cddf3
All checks were successful
/ ls (push) Successful in 5s
Try declaring buildx setup step use the docker driver
2025-06-08 03:12:40 +00:00

35 lines
No EOL
755 B
YAML

# This file needs to be manually run
name: Manual Test
on:
workflow_dispatch:
jobs:
ls:
name: List
runs-on: docker
steps:
- name: Checkout the repository
uses: https://forge.niblock.tech/actions/checkout@v4
- name: List the repository files
run: |
ls ${{ github.workspace }}
- name: Tell me who I am
run: |
whoami
- name: Is Docker installed in the default bookworm container?
run: |
which docker || echo "Nope :("
- name: Check for the Docker socket
run: |
ls -alh /var/run/
- name: Setup buildx
uses: https://forge.niblock.tech/actions/setup-buildx-action@v3
with:
driver: docker