diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-14 17:24:35 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-14 17:24:35 -0700 |
commit | 3729bfb0fb98770ea30ab51069fbe32db8939808 (patch) | |
tree | 7370b2a93f5e36e756f8183a8535b8067462aa2c /.github/workflows/main.yaml | |
parent | 82786f5a5d20094f277fadc319414d48acdb50e5 (diff) | |
download | sncontinue-3729bfb0fb98770ea30ab51069fbe32db8939808.tar.gz sncontinue-3729bfb0fb98770ea30ab51069fbe32db8939808.tar.bz2 sncontinue-3729bfb0fb98770ea30ab51069fbe32db8939808.zip |
download directly to server/exe without os prefix
Diffstat (limited to '.github/workflows/main.yaml')
-rw-r--r-- | .github/workflows/main.yaml | 28 |
1 files changed, 3 insertions, 25 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7753db9c..340344a3 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -67,43 +67,21 @@ jobs: uses: actions/download-artifact@v2 with: name: LinuxBuild - path: extension/server/exe/linux - if: matrix.os == 'ubuntu-20.04' - - - name: List files (Linux) - run: | - pwd - ls extension/server/exe/linux - chmod 777 extension/server/exe/linux/run + path: extension/server/exe if: matrix.os == 'ubuntu-20.04' - name: Download macOS build uses: actions/download-artifact@v2 with: name: macOSBuild - path: extension/server/exe/mac - if: matrix.os == 'macos-latest' - - - name: List files (MacOS) - run: | - pwd - ls extension/server/exe/mac - chmod 777 extension/server/exe/mac/run + path: extension/server/exe if: matrix.os == 'macos-latest' - name: Download Windows build uses: actions/download-artifact@v2 with: name: WindowsBuild - path: extension/server/exe/windows - if: matrix.os == 'windows-latest' - - - name: List files (Windows) - run: | - pwd - ls extension/server/exe/windows - chmod 777 extension/server/exe/windows/run.exe - shell: bash + path: extension/server/exe if: matrix.os == 'windows-latest' # Setup Node.js and install dependencies |