From 3e735b967fab1fe7dc026e9cb6e4084f2965daaf Mon Sep 17 00:00:00 2001 From: Daniel Cosme Date: Fri, 13 Feb 2026 14:45:06 -0500 Subject: [PATCH] Text working-directory --- .gitea/workflows/use-go-action.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/use-go-action.yaml b/.gitea/workflows/use-go-action.yaml index 3fd0d77..2a2784b 100644 --- a/.gitea/workflows/use-go-action.yaml +++ b/.gitea/workflows/use-go-action.yaml @@ -17,14 +17,14 @@ jobs: - name: Create Dir run: "mkdir content && cd content" - - name: Create File - run: "touch file.txt" - - - name: Write to File - run: "echo 'hello' > file.txt" + - run: "touch file.txt" + working-directory: ./content + - run: "echo 'hello' > file.txt" + working-directory: ./content - name: Who and Where am I run: "ls -la && whoami && pwd" - name: Read from File + working-directory: ./content run: "cat file.txt"