summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-08-14 16:23:47 -0700
committerNate Sesti <sestinj@gmail.com>2023-08-14 16:23:47 -0700
commit6cc108a030a92aa3d2ec4ed33fb6f3405a1dec04 (patch)
treef5f6d42c7ae4a9032f9538dade024fc5fa8cede3 /.github
parent4ade0bfa7774be46b7bd3ea84b96d822e0d9843b (diff)
downloadsncontinue-6cc108a030a92aa3d2ec4ed33fb6f3405a1dec04.tar.gz
sncontinue-6cc108a030a92aa3d2ec4ed33fb6f3405a1dec04.tar.bz2
sncontinue-6cc108a030a92aa3d2ec4ed33fb6f3405a1dec04.zip
pwd
Diffstat (limited to '.github')
-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'