Skip to content

Commit

Permalink
testing3
Browse files Browse the repository at this point in the history
  • Loading branch information
StealWonders committed Mar 4, 2024
1 parent 4f73d17 commit 9e1af4a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/deploy-main-in-dev-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,14 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}

# Run commands printing the file / directory structure
- name: List files
run: ls -la
# then check if the .git directory is present and print the result
# then print / check if its a symlink
- name: Run debug commands
run: |
ls -la
ls -la .git
test -L .git && echo "It's a symlink!"
deploy:
needs: [ build ]
Expand Down

0 comments on commit 9e1af4a

Please sign in to comment.