Scrcpy Mask v0.0.10

This commit is contained in:
AkiChase 2024-05-01 13:54:12 +08:00
parent ea6d3adc61
commit 022a0fecea
3 changed files with 16 additions and 16 deletions

View File

@ -1,10 +1,10 @@
name: 'publish'
name: "publish"
on:
push:
# 匹配特定标签 (refs/tags)
tags:
- 'v*' # 推送事件匹配 v*, 例如 v1.0v20.15.10 等来触发工作流
- "v*" # 推送事件匹配 v*, 例如 v1.0v20.15.10 等来触发工作流
# 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.
@ -16,19 +16,19 @@ jobs:
fail-fast: false
matrix:
include:
- platform: 'macos-latest' # for Arm based macs (M1 and above).
args: '--target aarch64-apple-darwin'
- platform: 'macos-latest' # for Intel based macs.
args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
args: ''
- platform: 'windows-latest'
args: ''
- platform: "macos-latest" # for Arm based macs (M1 and above).
args: "--target aarch64-apple-darwin"
- platform: "macos-latest" # for Intel based macs.
args: "--target x86_64-apple-darwin"
- platform: "ubuntu-22.04" # for Tauri v1 you could replace this with ubuntu-20.04.
args: ""
- platform: "windows-latest"
args: ""
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
@ -60,9 +60,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__
releaseName: 'Scrcpy Mask v__VERSION__'
releaseBody: 'Add release notes here.'
tagName: "app-${{ github.ref_name }}"
releaseName: "Scrcpy Mask ${{ github.ref_name }}"
releaseBody: "Add release notes here."
releaseDraft: true
prerelease: false
args: ${{ matrix.args }}

View File

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

View File

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