diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-14 15:23:52 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-14 15:23:52 -0700 |
commit | 07fc1949832ba2df3a0206219a40524f92a90aec (patch) | |
tree | 253639e80bd4cc9a32bc233864af1aab8beda9f2 /.github/workflows | |
parent | 47556eecdc084a67afc7aa271f70b82badd66b24 (diff) | |
download | sncontinue-07fc1949832ba2df3a0206219a40524f92a90aec.tar.gz sncontinue-07fc1949832ba2df3a0206219a40524f92a90aec.tar.bz2 sncontinue-07fc1949832ba2df3a0206219a40524f92a90aec.zip |
download binaries to correct location
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 18579658..76626e99 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -70,6 +70,10 @@ jobs: path: extension/server/exe/linux if: matrix.os == 'ubuntu-20.04' + - name: Rename file (Linux) + run: mv extension/server/exe/mac/Linux\ Build extension/server/exe/linux/run + if: matrix.os == 'ubuntu-20.04' + - name: Download macOS build uses: actions/download-artifact@v2 with: @@ -77,6 +81,10 @@ jobs: path: extension/server/exe/mac if: matrix.os == 'macos-latest' + - name: Rename file (MacOS) + run: mv extension/server/exe/mac/macOS\ Build extension/server/exe/mac/run + if: matrix.os == 'macos-latest' + - name: Download Windows build uses: actions/download-artifact@v2 with: @@ -84,6 +92,11 @@ jobs: path: extension/server/exe/windows if: matrix.os == 'windows-latest' + - name: Rename file (Windows) + run: move extension\server\exe\windows\Windows Build extension\server\exe\windows\run.exe + shell: powershell + if: matrix.os == 'windows-latest' + # Setup Node.js and install dependencies - name: Use Node.js 19.0.0 |