diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-01 14:20:56 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-01 14:20:56 -0700 |
commit | cb9144a0af7d09309a1997643f14167bb4800692 (patch) | |
tree | bf274b5d2481daf2a2e90f22177e98e72059c737 /.github/workflows/main.yaml | |
parent | 631f7498190af1403c44f0bfdc93032a965df3ea (diff) | |
download | sncontinue-cb9144a0af7d09309a1997643f14167bb4800692.tar.gz sncontinue-cb9144a0af7d09309a1997643f14167bb4800692.tar.bz2 sncontinue-cb9144a0af7d09309a1997643f14167bb4800692.zip |
ci: :green_heart: copy binaries to new location in ci
Diffstat (limited to '.github/workflows/main.yaml')
-rw-r--r-- | .github/workflows/main.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 10cfc2a1..7e21b606 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -59,29 +59,29 @@ jobs: # Download corresponding binary artifact for the platform - - name: Create exe directory + - name: Create server directory run: | - mkdir extension/server/exe + mkdir -p ~/.continue/server/exe - name: Download Linux build uses: actions/download-artifact@v2 with: name: LinuxBuild - path: extension/server/exe + path: ~/.continue/server/exe if: matrix.os == 'ubuntu-20.04' - name: Download macOS build uses: actions/download-artifact@v2 with: name: macOSBuild - path: extension/server/exe + path: ~/.continue/server/exe if: matrix.os == 'macos-latest' - name: Download Windows build uses: actions/download-artifact@v2 with: name: WindowsBuild - path: extension/server/exe + path: ~/.continue/server/exe if: matrix.os == 'windows-latest' - name: Set permissions |