Skip to content

Commit 6230f93

Browse files
committed
CI updates
1 parent 134d2a0 commit 6230f93

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,11 @@ jobs:
143143
name: windows-x86_64
144144
build: build
145145
features: default
146+
- platform: windows-latest
147+
target: aarch64-pc-windows-msvc
148+
name: windows-arm64
149+
build: build
150+
features: default
146151
- platform: macos-latest
147152
target: x86_64-apple-darwin
148153
name: macos-x86_64
@@ -234,7 +239,6 @@ jobs:
234239

235240
release:
236241
name: Release
237-
if: startsWith(github.ref, 'refs/tags/')
238242
runs-on: ubuntu-latest
239243
needs: [ check, build-cli, build-gui ]
240244
permissions:
@@ -249,6 +253,8 @@ jobs:
249253
run: |
250254
set -euo pipefail
251255
mkdir ../out
256+
ls -R
257+
echo ----------------
252258
for dir in */; do
253259
for file in "$dir"*; do
254260
base=$(basename "$file")
@@ -265,6 +271,7 @@ jobs:
265271
done
266272
ls -R ../out
267273
- name: Release
274+
if: startsWith(github.ref, 'refs/tags/')
268275
uses: softprops/action-gh-release@v1
269276
with:
270277
files: out/*

0 commit comments

Comments
 (0)