-
Notifications
You must be signed in to change notification settings - Fork 2
190 lines (172 loc) · 6.68 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
name: Zed Windows Build
on:
workflow_dispatch:
push:
branches:
- main
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/
C:/Users/runneradmin/.cargo/registry/
C:/Users/runneradmin/.cargo/git/
C:/Users/runneradmin/.rustup/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
# Clean up old build artifacts
- name: Clean up old build artifacts
run: |
$latestTag = (Invoke-RestMethod -Uri https://api.github.com/repos/zed-industries/zed/releases | ForEach-Object { $_.tag_name } | Select-Object -First 1)
$oldArtifacts = Get-ChildItem -Path "target/release" -Filter "Zed-windows-amd64-*.exe"
foreach ($artifact in $oldArtifacts) {
if ($artifact.Name -ne "Zed-windows-amd64-$latestTag.exe") {
Remove-Item $artifact.FullName -Force
Write-Host "Removed old artifact: $($artifact.Name)"
}
}
# Build Zed
- run: cargo build --release -j 4
- run: copy target/release/Zed.exe target/release/Zed-windows-amd64.exe
- run: |
if (Test-Path -Path 'target/release/Zed-windows-amd64.exe') {
echo "Build successful, file exists."
}
else {
echo "Build failed, file does not exist."
exit 1
}
# Get latest release tag from GitHub API + fallback to v0.0.0 if no tag is found
- name: Get latest release tag from GitHub API
id: get_latest_tag
run: |
$latestRelease = (Invoke-RestMethod -Uri https://api.github.com/repos/zed-industries/zed/releases/latest)
$latestTag = $latestRelease.tag_name
$isPrerelease = $latestRelease.prerelease.ToString().ToLower()
if (-not $latestTag) {
$latestTag = "v0.0.0"
$isPrerelease = "false"
}
echo "LATEST_TAG=$latestTag" >> $env:GITHUB_ENV
echo "IS_PRERELEASE=$isPrerelease" >> $env:GITHUB_ENV
echo "Latest tag: $latestTag, Is Pre-release: $isPrerelease"
- name: Rename build output
run: |
$sourceDir = "target\release"
$sourceName = "Zed-windows-amd64.exe"
$newFileName = "Zed-windows-amd64-$env:LATEST_TAG.exe"
$sourcePath = Join-Path -Path $sourceDir -ChildPath $sourceName
$destinationPath = Join-Path -Path $sourceDir -ChildPath $newFileName
if (Test-Path -Path $sourcePath) {
Rename-Item -Path $sourcePath -NewName $newFileName -Force
Write-Host "File renamed successfully to $newFileName"
} else {
Write-Host "Error: Source file $sourcePath not found"
exit 1
}
- uses: actions/upload-artifact@v4
with:
name: Zed-windows-amd64-${{ env.LATEST_TAG }}
path: target/release/Zed-windows-amd64-${{ env.LATEST_TAG }}.exe
upload-to-release:
runs-on: ubuntu-latest
needs: [build-windows-amd64]
steps:
- uses: actions/download-artifact@v4
with:
pattern: Zed-*
merge-multiple: true
path: target/release
- name: Verify downloaded artifacts
run: |
echo "Contents of current directory:"
ls -R
echo "Contents of target/release directory:"
ls -l target/release || echo "target/release directory does not exist"
- name: Verify environment variables and files
run: |
echo "LATEST_TAG=$LATEST_TAG"
echo "Current directory:"
pwd
echo "Contents of current directory:"
ls -R
echo "Contents of target/release directory:"
ls -l target/release || echo "target/release directory does not exist"
echo "Searching for Zed-windows-amd64 files:"
find . -name "Zed-windows-amd64*"
- name: Get current date
id: get_date
run: |
echo "DATE=$(date +'%m-%d-%Y')" >> $GITHUB_ENV
- name: Get latest release tag
id: get_latest_tag
run: |
LATEST_RELEASE=$(curl -s https://api.github.com/repos/zed-industries/zed/releases/latest)
LATEST_TAG=$(echo $LATEST_RELEASE | jq -r '.tag_name')
IS_PRERELEASE=$(echo $LATEST_RELEASE | jq -r '.prerelease')
if [ -z "$LATEST_TAG" ]; then
LATEST_TAG="v0.0.0"
IS_PRERELEASE=false
fi
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
echo "IS_PRERELEASE=$IS_PRERELEASE" >> $GITHUB_ENV
echo "Latest tag: $LATEST_TAG, Is Pre-release: $IS_PRERELEASE"
- name: Fetch release body from GitHub API
id: fetch_body
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
RELEASE_DATA=$(curl -s \
-H "Authorization: token $GITHUB_TOKEN" \
https://api.github.com/repos/zed-industries/zed/releases/latest)
BODY=$(echo "$RELEASE_DATA" | jq -r '.body')
echo "RELEASE_BODY<<EOF" >> $GITHUB_ENV
echo "$BODY" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.LATEST_TAG }}
release_name: ${{ env.LATEST_TAG }}
body: ${{ env.RELEASE_BODY }}
draft: false
prerelease: ${{ env.IS_PRERELEASE }}
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/release/Zed-windows-amd64-${{ env.LATEST_TAG }}.exe
asset_name: Zed-windows-amd64-${{ env.LATEST_TAG }}.exe
asset_content_type: application/octet-stream
- uses: actions/checkout@v4
with:
repository: yannouuuu/zed-windows-build
fetch-depth: 0
- uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: update
file_pattern: build.md *-update.json
commit_message: Bump version ${{ env.NEXT_VER_CODE }}