mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-04 09:46:43 +00:00
update releases tags
This commit is contained in:
parent
e67fa3c817
commit
eaefb6ed22
10
.github/workflows/linux-aarch64-nightly.yml
vendored
10
.github/workflows/linux-aarch64-nightly.yml
vendored
@ -138,12 +138,16 @@ jobs:
|
||||
name: linux-deb-aarch64
|
||||
path: src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb
|
||||
|
||||
- name: Get version from package.json
|
||||
id: version
|
||||
run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Create Release
|
||||
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
name: Linux ARM64 Nightly Build
|
||||
tag_name: linux-arm64-nightly-latest
|
||||
name: "Linux ARM64 Nightly Build v${{ steps.version.outputs.version }}"
|
||||
tag_name: "linux-arm64-nightly-${{ steps.version.outputs.version }}"
|
||||
files: |
|
||||
src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
|
||||
src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb
|
||||
|
10
.github/workflows/linux-x86_64-nightly.yml
vendored
10
.github/workflows/linux-x86_64-nightly.yml
vendored
@ -66,12 +66,16 @@ jobs:
|
||||
name: linux-deb
|
||||
path: src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb
|
||||
|
||||
- name: Get version from package.json
|
||||
id: version
|
||||
run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Create Release
|
||||
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
name: Linux x86_64 Nightly Build
|
||||
tag_name: linux-x86_64-nightly-latest
|
||||
name: "Linux x86_64 Nightly Build v${{ steps.version.outputs.version }}"
|
||||
tag_name: "linux-x86_64-nightly-${{ steps.version.outputs.version }}"
|
||||
files: |
|
||||
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
|
||||
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb
|
||||
|
10
.github/workflows/macos-nightly.yml
vendored
10
.github/workflows/macos-nightly.yml
vendored
@ -74,12 +74,16 @@ jobs:
|
||||
name: macos-apple-silicon-build
|
||||
path: src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg
|
||||
|
||||
- name: Get version from package.json
|
||||
id: version
|
||||
run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Create Release
|
||||
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
name: MacOS Nightly Build
|
||||
tag_name: macos-nightly-latest
|
||||
name: "MacOS Nightly Build v${{ steps.version.outputs.version }}"
|
||||
tag_name: "macos-nightly-${{ steps.version.outputs.version }}"
|
||||
files: |
|
||||
src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/*.dmg
|
||||
src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg
|
||||
|
10
.github/workflows/windows-nightly.yml
vendored
10
.github/workflows/windows-nightly.yml
vendored
@ -47,12 +47,16 @@ jobs:
|
||||
name: windows-exe
|
||||
path: src-tauri/target/release/*.exe
|
||||
|
||||
- name: Get version from package.json
|
||||
id: version
|
||||
run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Create Release
|
||||
if: github.event_name == 'workflow_dispatch' # Only create release for scheduled builds
|
||||
if: github.event_name == 'workflow_dispatch'
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
name: Windows Nightly Build
|
||||
tag_name: windows-nightly-latest
|
||||
name: "Windows Nightly Build v${{ steps.version.outputs.version }}"
|
||||
tag_name: "windows-nightly-${{ steps.version.outputs.version }}"
|
||||
files: src-tauri/target/release/*.exe
|
||||
prerelease: false
|
||||
env:
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "macos-task-manager",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.6",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@ -1608,7 +1608,7 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
||||
|
||||
[[package]]
|
||||
name = "macos-task-manager"
|
||||
version = "1.0.5"
|
||||
version = "1.0.6"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "macos-task-manager"
|
||||
version = "1.0.5"
|
||||
version = "1.0.6"
|
||||
description = "A Tauri App"
|
||||
authors = ["you"]
|
||||
edition = "2021"
|
||||
|
@ -28,7 +28,7 @@
|
||||
},
|
||||
"productName": "NeoHtop",
|
||||
"mainBinaryName": "NeoHtop",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.6",
|
||||
"identifier": "com.neohtop.dev",
|
||||
"plugins": {},
|
||||
"app": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user