zed/.github/workflows/release_nightly.yml

92 lines
2.6 KiB
YAML
Raw Normal View History

2023-11-17 20:16:55 +00:00
name: Release Nightly
on:
schedule:
2024-01-03 21:24:37 +00:00
# Fire every day at 7:00am UTC (Roughly before EU workday and after US workday)
- cron: "0 7 * * *"
push:
tags:
- "nightly"
2023-11-17 20:16:55 +00:00
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
2023-11-17 20:16:55 +00:00
jobs:
style:
name: Check formatting and Clippy lints
runs-on:
- self-hosted
- test
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
clean: false
submodules: "recursive"
fetch-depth: 0
- name: Run style checks
uses: ./.github/actions/check_style
2023-11-17 20:16:55 +00:00
tests:
name: Run tests
runs-on:
- self-hosted
- test
needs: style
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
clean: false
submodules: "recursive"
- name: Run tests
uses: ./.github/actions/run_tests
2023-11-17 20:16:55 +00:00
bundle:
name: Bundle app
runs-on:
- self-hosted
- bundle
needs: tests
env:
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
MACOS_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PASSWORD }}
APPLE_NOTARIZATION_USERNAME: ${{ secrets.APPLE_NOTARIZATION_USERNAME }}
APPLE_NOTARIZATION_PASSWORD: ${{ secrets.APPLE_NOTARIZATION_PASSWORD }}
DIGITALOCEAN_SPACES_ACCESS_KEY: ${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }}
DIGITALOCEAN_SPACES_SECRET_KEY: ${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}
steps:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: "18"
2023-11-17 20:16:55 +00:00
- name: Checkout repo
uses: actions/checkout@v3
with:
clean: false
submodules: "recursive"
2023-11-17 20:16:55 +00:00
- name: Limit target directory size
run: script/clear-target-dir-if-larger-than 100
2023-11-17 20:16:55 +00:00
- name: Set release channel to nightly
run: |
set -eu
version=$(git rev-parse --short HEAD)
echo "Publishing version: ${version} on release channel nightly"
echo "nightly" > crates/zed/RELEASE_CHANNEL
2023-11-17 20:16:55 +00:00
- name: Generate license file
run: script/generate-licenses
2023-11-17 20:16:55 +00:00
- name: Create app bundle
run: script/bundle
2023-11-17 20:16:55 +00:00
- name: Upload Zed Nightly
run: script/upload-nightly