mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-11 17:29:45 +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
|
name: linux-deb-aarch64
|
||||||
path: src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb
|
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
|
- 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
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
name: Linux ARM64 Nightly Build
|
name: "Linux ARM64 Nightly Build v${{ steps.version.outputs.version }}"
|
||||||
tag_name: linux-arm64-nightly-latest
|
tag_name: "linux-arm64-nightly-${{ steps.version.outputs.version }}"
|
||||||
files: |
|
files: |
|
||||||
src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
|
src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
|
||||||
src-tauri/target/aarch64-unknown-linux-gnu/release/bundle/deb/*.deb
|
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
|
name: linux-deb
|
||||||
path: src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.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
|
- 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
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
name: Linux x86_64 Nightly Build
|
name: "Linux x86_64 Nightly Build v${{ steps.version.outputs.version }}"
|
||||||
tag_name: linux-x86_64-nightly-latest
|
tag_name: "linux-x86_64-nightly-${{ steps.version.outputs.version }}"
|
||||||
files: |
|
files: |
|
||||||
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
|
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/appimage/*.AppImage
|
||||||
src-tauri/target/x86_64-unknown-linux-gnu/release/bundle/deb/*.deb
|
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
|
name: macos-apple-silicon-build
|
||||||
path: src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/*.dmg
|
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
|
- 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
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
name: MacOS Nightly Build
|
name: "MacOS Nightly Build v${{ steps.version.outputs.version }}"
|
||||||
tag_name: macos-nightly-latest
|
tag_name: "macos-nightly-${{ steps.version.outputs.version }}"
|
||||||
files: |
|
files: |
|
||||||
src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/*.dmg
|
src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/*.dmg
|
||||||
src-tauri/target/aarch64-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
|
name: windows-exe
|
||||||
path: src-tauri/target/release/*.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
|
- 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
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
name: Windows Nightly Build
|
name: "Windows Nightly Build v${{ steps.version.outputs.version }}"
|
||||||
tag_name: windows-nightly-latest
|
tag_name: "windows-nightly-${{ steps.version.outputs.version }}"
|
||||||
files: src-tauri/target/release/*.exe
|
files: src-tauri/target/release/*.exe
|
||||||
prerelease: false
|
prerelease: false
|
||||||
env:
|
env:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "macos-task-manager",
|
"name": "macos-task-manager",
|
||||||
"version": "1.0.5",
|
"version": "1.0.6",
|
||||||
"description": "",
|
"description": "",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@ -1608,7 +1608,7 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "macos-task-manager"
|
name = "macos-task-manager"
|
||||||
version = "1.0.5"
|
version = "1.0.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "macos-task-manager"
|
name = "macos-task-manager"
|
||||||
version = "1.0.5"
|
version = "1.0.6"
|
||||||
description = "A Tauri App"
|
description = "A Tauri App"
|
||||||
authors = ["you"]
|
authors = ["you"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
},
|
},
|
||||||
"productName": "NeoHtop",
|
"productName": "NeoHtop",
|
||||||
"mainBinaryName": "NeoHtop",
|
"mainBinaryName": "NeoHtop",
|
||||||
"version": "1.0.5",
|
"version": "1.0.6",
|
||||||
"identifier": "com.neohtop.dev",
|
"identifier": "com.neohtop.dev",
|
||||||
"plugins": {},
|
"plugins": {},
|
||||||
"app": {
|
"app": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user