Compare commits

..

2 Commits

Author SHA1 Message Date
zhom 7f3a3287d6 build: switch win x64 build to windows-latest 2025-06-09 19:48:30 +04:00
zhom dd9347d429 build: set proper shell for the hash step 2025-06-09 19:19:57 +04:00
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ jobs:
target: "aarch64-unknown-linux-gnu"
pkg_target: "latest-linux-arm64"
nodecar_script: "build:linux-arm64"
- platform: "windows-11"
- platform: "windows-latest"
args: "--target x86_64-pc-windows-msvc"
arch: "x86_64"
target: "x86_64-pc-windows-msvc"
+6 -2
View File
@@ -68,7 +68,7 @@ jobs:
target: "aarch64-unknown-linux-gnu"
pkg_target: "latest-linux-arm64"
nodecar_script: "build:linux-arm64"
- platform: "windows-11"
- platform: "windows-latest"
args: "--target x86_64-pc-windows-msvc"
arch: "x86_64"
target: "x86_64-pc-windows-msvc"
@@ -138,7 +138,11 @@ jobs:
- name: Get commit hash
id: commit
run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
shell: bash
run: |
COMMIT_HASH=$(echo "${GITHUB_SHA}" | cut -c1-7)
echo "hash=${COMMIT_HASH}" >> $GITHUB_OUTPUT
echo "Generated commit hash: ${COMMIT_HASH}"
- name: Build Tauri app
uses: tauri-apps/tauri-action@v0