From 556383f705107eea9b554cbf3ea1378ab8f24086 Mon Sep 17 00:00:00 2001 From: niblock Date: Sat, 7 Jun 2025 16:50:26 +0000 Subject: [PATCH] Fix it --- .forgejo/workflows/manual.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/manual.yml b/.forgejo/workflows/manual.yml index 215578e..fdfcb91 100644 --- a/.forgejo/workflows/manual.yml +++ b/.forgejo/workflows/manual.yml @@ -10,6 +10,9 @@ jobs: name: List runs-on: docker steps: - uses: https://forge.niblock.tech/actions/checkout@v4 - run: | - ls ${{ github.workspace }} \ No newline at end of file + - name: Checkout the repository + uses: https://forge.niblock.tech/actions/checkout@v4 + + - name: List the repository files + run: | + ls ${{ github.workspace }} \ No newline at end of file