Skip to content

Commit

Permalink
chore: first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
deevus committed Jul 20, 2024
0 parents commit e69e931
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build Zed Nightly

on:
schedule:
- cron: "0 0 * * *" # Runs every night at midnight UTC
push:
branches:
- main

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
repository: zed-industries/zed
ref: main

- name: Install rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
target: wasm32-wasi

- name: Build release
uses: actions-rs/cargo@v1
with:
command: build
args: --release

- name: Archive build
uses: actions/upload-artifact@v3
with:
name: zed-release
path: target/release

0 comments on commit e69e931

Please sign in to comment.