ci: update action directory path in workflow config
This commit is contained in:
parent
c9fd83e531
commit
50c451f69e
1 changed files with 3 additions and 9 deletions
|
@ -17,16 +17,10 @@ jobs:
|
||||||
- name: Inspect the Action Directory (Debugging)
|
- name: Inspect the Action Directory (Debugging)
|
||||||
run: |
|
run: |
|
||||||
echo "Listing files in action directory:"
|
echo "Listing files in action directory:"
|
||||||
ls -l ./
|
ls -l /var/run/act/actions/https---git.kjan.de-actions-pull-request-lint@main/
|
||||||
|
|
||||||
- name: Set execute permissions (Attempt 1 - Relative Path)
|
- name: Set execute permissions (Explicit Path)
|
||||||
run: chmod +x main.go.out
|
run: chmod +x /var/run/act/actions/https---git.kjan.de-actions-pull-request-lint@main/main.go.out
|
||||||
|
|
||||||
- name: Set execute permissions (Attempt 2 - Absolute Path)
|
|
||||||
run: chmod +x $(pwd)/main.go.out
|
|
||||||
|
|
||||||
- name: Set execute permissions (Attempt 3 - Explicit Path)
|
|
||||||
run: chmod +x /github/workspace/main.go.out #This is a path commonly used by actions, might work
|
|
||||||
|
|
||||||
- name: Run Pull Request Lint Action
|
- name: Run Pull Request Lint Action
|
||||||
uses: https://git.kjan.de/actions/pull-request-lint@main
|
uses: https://git.kjan.de/actions/pull-request-lint@main
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue