mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
40 lines
942 B
YAML
40 lines
942 B
YAML
|
name: Publish zed-extension CLI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- extension-cli
|
||
|
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
CARGO_INCREMENTAL: 0
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
name: Publish zed-extension CLI
|
||
|
runs-on:
|
||
|
- ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repo
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
clean: false
|
||
|
|
||
|
- name: Cache dependencies
|
||
|
uses: swatinem/rust-cache@v2
|
||
|
with:
|
||
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
||
|
|
||
|
- name: Configure linux
|
||
|
shell: bash -euxo pipefail {0}
|
||
|
run: script/linux
|
||
|
|
||
|
- name: Build extension CLI
|
||
|
run: cargo build --release --package extension_cli
|
||
|
|
||
|
- name: Upload binary
|
||
|
env:
|
||
|
DIGITALOCEAN_SPACES_ACCESS_KEY: ${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }}
|
||
|
DIGITALOCEAN_SPACES_SECRET_KEY: ${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}
|
||
|
run: script/upload-extension-cli ${{ github.sha }}
|