diff options
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  | 
