Build Zed for Windows #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Zed for Windows | |
on: | |
workflow_dispatch: | |
schedule: | |
# github actions timezone is UTC | |
- cron: "0 22 * * *" | |
jobs: | |
Build: | |
runs-on: windows-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v2 | |
- name: Install Toolchain | |
run: rustup target add wasm32-wasi | |
# add Rust cache | |
- name: Cache Rust dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
zed/target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Clone Source Code | |
run: | | |
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git config --global user.name github-actions[bot] | |
git clone https://github.com/zed-industries/zed -b main zed | |
- name: Build Executable | |
run: | | |
cd zed | |
cargo build --release --verbose | |
- name: Compile Setup Wizard | |
uses: Minionguyjpro/[email protected] | |
with: | |
path: zed_wizard.iss | |
options: /O+ | |
- name: Rename Setup Wizard | |
run: | | |
$date = Get-Date -Format "yyyy-MM-dd" | |
Rename-Item -Path "Output\zed_setup.exe" -NewName "zed-setup-nightly-$date.exe" | |
- name: Generate Release Tag | |
id: tag | |
run: | | |
$date = Get-Date -Format "yyyy-MM-dd" | |
echo "release_tag=$date" >> $env:GITHUB_OUTPUT | |
echo "release_date=$date" >> $env:GITHUB_OUTPUT | |
- name: Upload to Releases | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: ${{ steps.tag.outputs.release_date }} Zed Windows | |
tag_name: ${{ steps.tag.outputs.release_tag }} | |
files: Output/zed-setup-nightly-${{ steps.tag.outputs.release_date }}.exe |