## Description This reworks CI now that we have merged docs and website into a single deployment. ## Type of change <!--- Please check the type of change your PR introduces: ---> - [ ] 🌻 Feature - [ ] 🐛 Bugfix - [ ] 🗺️ Documentation - [ ] 🤖 Test - [x] 💻 CI/Deployment - [ ] 🐹 Trivial/Minor ## Issue(s) <!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. --> * Fixes https://github.com/alcionai/corso/issues/1551 ## Test Plan <!-- How will this be tested prior to merging.--> - [x] 💪 Manual - [ ] ⚡ Unit test - [ ] 💚 E2E
1.8 KiB
import CodeBlock from '@theme/CodeBlock'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {Version} from '@site/src/corsoEnv';
{
Invoke-WebRequest \
-Uri https://github.com/alcionai/corso/releases/download/${Version()}/corso_${Version()}Windows_x86_64.zip `
-UseBasicParsing -Outfile corso${Version()}Windows_x86_64.zip
Expand-Archive .\corso${Version()}_Windows_x86_64.zip`
}
{
curl -L -O https://github.com/alcionai/corso/releases/download/${Version()}/corso_${Version()}_Linux_arm64.tar.gz && \\ tar zxvf corso_${Version()}_Linux_arm64.tar.gz
}
{
curl -L -O https://github.com/alcionai/corso/releases/download/${Version()}/corso_${Version()}_Linux_x86_64.tar.gz && \\ tar zxvf corso_${Version()}_Linux_x86_64.tar.gz
}
{
curl -L -O https://github.com/alcionai/corso/releases/download/${Version()}/corso_${Version()}_Darwin_arm64.tar.gz && \\ tar zxvf corso_${Version()}_Darwin_arm64.tar.gz
}
{
curl -L -O https://github.com/alcionai/corso/releases/download/${Version()}/corso_${Version()}_Darwin_x86_64.tar.gz && \\ tar zxvf corso_${Version()}_Darwin_x86_64.tar.gz
}