diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-14 16:16:59 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-14 16:16:59 -0700 |
commit | 4ade0bfa7774be46b7bd3ea84b96d822e0d9843b (patch) | |
tree | 4ff7b08944c6c806cef3c9a7f184f158f3f78376 /.github | |
parent | 0f146ceba775bcf60d850ce7abaf4aa64d050e80 (diff) | |
download | sncontinue-4ade0bfa7774be46b7bd3ea84b96d822e0d9843b.tar.gz sncontinue-4ade0bfa7774be46b7bd3ea84b96d822e0d9843b.tar.bz2 sncontinue-4ade0bfa7774be46b7bd3ea84b96d822e0d9843b.zip |
list files
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3350722e..b84e02d9 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -70,10 +70,8 @@ jobs: path: extension/server/exe/linux if: matrix.os == 'ubuntu-20.04' - - name: Rename file (Linux) - run: | - ls extension/server/exe/linux - mv extension/server/exe/linux/LinuxBuild extension/server/exe/linux/run + - name: List files (Linux) + run: ls extension/server/exe/linux if: matrix.os == 'ubuntu-20.04' - name: Download macOS build @@ -83,8 +81,8 @@ jobs: path: extension/server/exe/mac if: matrix.os == 'macos-latest' - - name: Rename file (MacOS) - run: mv extension/server/exe/mac/macOSBuild extension/server/exe/mac/run + - name: List files (MacOS) + run: ls extension/server/exe/mac if: matrix.os == 'macos-latest' - name: Download Windows build @@ -94,8 +92,8 @@ jobs: path: extension/server/exe/windows if: matrix.os == 'windows-latest' - - name: Rename file (Windows) - run: mv extension/server/exe/windows/WindowsBuild extension/server/exe/windows/run.exe + - name: List files (Windows) + run: ls extension/server/exe/windows shell: bash if: matrix.os == 'windows-latest' |