Zed Windows Build #4
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 | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build-windows-amd64: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: zed-industries/zed | |
- uses: dtolnay/rust-toolchain@stable | |
- run: rustup target add wasm32-wasi | |
- uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: amd64 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- run: cargo build --release | |
- run: copy target\release\Zed.exe target\release\Zed-windows-amd64.exe | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Zed-windows-amd64 | |
path: target\release\Zed-windows-amd64.exe | |
upload-to-release: | |
runs-on: ubuntu-latest | |
needs: [build-windows-amd64] | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: Zed-* | |
merge-multiple: true | |
- name: Get current date | |
id: get_date | |
run: | | |
echo "DATE=$(date +'%m-%d-%Y')" >> $GITHUB_ENV | |
- name: Upload modules to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
body: ${{ steps.get_output.outputs.BUILD_LOG }} | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./build/* | |
release_name: Zed Windows - ${{ env.DATE }} | |
tag: ${{ steps.next_ver_code.outputs.NEXT_VER_CODE }} | |
file_glob: true | |
overwrite: true | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
branch: update | |
skip_checkout: true | |
file_pattern: build.md *-update.json | |
commit_message: Bump version ${{ steps.next_ver_code.outputs.NEXT_VER_CODE }} |