xps 13 3980

This commit is contained in:
2026-02-26 13:37:04 +01:00
commit d6ac8e5931
21 changed files with 4562 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
name: Build and Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build Release
run: cargo build --release
- name: Get Version
id: get_version
run: |
VERSION=$(grep '^version' Cargo.toml | head -1 | cut -d '"' -f 2)
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Prepare Binary
run: |
cp target/release/xps-thermal-bench xps-thermal-bench-linux-amd64
sha256sum xps-thermal-bench-linux-amd64 > xps-thermal-bench-linux-amd64.sha256
- name: Release
uses: softprops/action-gh-release@v2
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
with:
files: |
xps-thermal-bench-linux-amd64
xps-thermal-bench-linux-amd64.sha256
tag_name: v${{ steps.get_version.outputs.VERSION }}
name: Release v${{ steps.get_version.outputs.VERSION }}
draft: false
prerelease: false
target_commitish: main
generate_release_notes: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}