Skip to content
This repository has been archived by the owner on Aug 19, 2023. It is now read-only.

Add files via upload #38

Merged
merged 1 commit into from
Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions .github/workflows/tauriBuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@

name: AutoBuild2

on:
push:
branches:
- beta_3
paths-ignore:
- "README.md"
- "README_CN.md"
- ".github/workflows/**"
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- name: '使用 Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: '安装依赖'
run: npm install

- name: '构建静态文件和可执行文件'
run: npm run tauri build

#- name: '清理没必要打包的文件(1/2)'
#run: Remove-Item -force .\src\*
#- name: '清理没必要打包的文件(2/2)'
#run: Remove-Item -force .\blurlyric\*


- name: '上传Ubuntu artifact'
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v3
with:
name: blurlyric_ubuntu-${{ github.sha }}.deb
path: /

- name: '上传MacOS artifact'
if: ${{ matrix.os == 'macos-latest' }}
uses: actions/upload-artifact@v3
with:
name: blurlyric_macos-${{ github.sha }}.zip
path: /

- name: '上传Windows artifact'
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/upload-artifact@v3
with:
name: blurlyric-win32-x64-${{ github.sha }}.zip
path: /