Scrcpy Mask v0.0.7

This commit is contained in:
AkiChase 2024-05-01 13:20:25 +08:00
parent 0a6e500e36
commit 476684f626
4 changed files with 4 additions and 5 deletions

View File

@ -5,8 +5,6 @@ on:
# 匹配特定标签 (refs/tags) # 匹配特定标签 (refs/tags)
tags: tags:
- 'v*' # 推送事件匹配 v*, 例如 v1.0v20.15.10 等来触发工作流 - 'v*' # 推送事件匹配 v*, 例如 v1.0v20.15.10 等来触发工作流
branches:
- master
# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release. # This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.
@ -63,6 +61,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
releaseName: 'Scrcpy Mask ${{ github.ref_name }}' releaseName: 'Scrcpy Mask ${{ github.ref_name }}'
releaseBody: 'Add release notes here.'
releaseDraft: true releaseDraft: true
prerelease: false prerelease: false
args: ${{ matrix.args }} args: ${{ matrix.args }}

View File

@ -1,7 +1,7 @@
{ {
"name": "scrcpy-mask", "name": "scrcpy-mask",
"private": true, "private": true,
"version": "0.0.6", "version": "0.0.7",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -32,5 +32,5 @@ process.stdin.on("data", function (data) {
console.log("git commit and tag"); console.log("git commit and tag");
console.log(execSync(`git add . && git commit -m "Scrcpy Mask v${version}" && git tag v${version}`).toString()); console.log(execSync(`git add . && git commit -m "Scrcpy Mask v${version}" && git tag v${version}`).toString());
console.log("Pleash push to github or cancel manually"); console.log("Pleash push commit and tag to github manually");
}); });

View File

@ -1,6 +1,6 @@
[package] [package]
name = "scrcpy-mask" name = "scrcpy-mask"
version = "0.0.6" version = "0.0.7"
description = "A Tauri App" description = "A Tauri App"
authors = ["AkiChase"] authors = ["AkiChase"]
edition = "2021" edition = "2021"