summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/main.yaml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index b84e02d9..604f8fe1 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -71,7 +71,9 @@ jobs:
if: matrix.os == 'ubuntu-20.04'
- name: List files (Linux)
- run: ls extension/server/exe/linux
+ run: |
+ pwd
+ ls extension/server/exe/linux
if: matrix.os == 'ubuntu-20.04'
- name: Download macOS build
@@ -82,7 +84,9 @@ jobs:
if: matrix.os == 'macos-latest'
- name: List files (MacOS)
- run: ls extension/server/exe/mac
+ run: |
+ pwd
+ ls extension/server/exe/mac
if: matrix.os == 'macos-latest'
- name: Download Windows build
@@ -93,7 +97,9 @@ jobs:
if: matrix.os == 'windows-latest'
- name: List files (Windows)
- run: ls extension/server/exe/windows
+ run: |
+ pwd
+ ls extension/server/exe/windows
shell: bash
if: matrix.os == 'windows-latest'