Text working-directory

This commit is contained in:
Daniel Cosme
2026-02-13 14:45:06 -05:00
parent 28b2a9d2e0
commit 3e735b967f

View File

@@ -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"