Skip to content

Commit

Permalink
Merge pull request #2 from JunaYa/release
Browse files Browse the repository at this point in the history
Release: v0.1.1
  • Loading branch information
JunaYa authored Nov 22, 2024
2 parents fcb94fd + 92ca986 commit b9d6708
Show file tree
Hide file tree
Showing 37 changed files with 3,687 additions and 2,653 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Frontend

on:
push:
branches:
- dev

jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*

- name: Install dependencies
run: npm i -g pnpm && pnpm i

- name: Run linter
run: pnpm run lint

- name: Run build
run: pnpm run build
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "publish"
name: publish

on:
push:
Expand All @@ -16,10 +16,10 @@ 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: 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

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -44,8 +44,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version.
releaseName: "App v__VERSION__"
releaseBody: "See the assets to download this version and install."
releaseName: App v__VERSION__
releaseBody: See the assets to download this version and install.
releaseDraft: true
prerelease: false
args: ${{ matrix.args }}
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "ddu",
"type": "module",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.vue,.tsx",
"lint:fix": "eslint --fix",
"lint": "eslint --fix",
"tauri": "tauri"
},
"dependencies": {
Expand All @@ -17,6 +16,7 @@
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-dialog": "~2.0.1",
"@tauri-apps/plugin-fs": "~2.0.2",
"@tauri-apps/plugin-global-shortcut": "~2",
"@tauri-apps/plugin-shell": "^2.0.1",
"@tauri-apps/plugin-store": "~2",
"@vueuse/core": "^11.2.0",
Expand All @@ -32,7 +32,6 @@
"eslint": "^9.14.0",
"typescript": "^5.6.3",
"unocss": "^0.64.1",
"unplugin-auto-import": "^0.18.4",
"vite": "^5.4.11",
"vue-tsc": "^2.1.10"
},
Expand Down
Loading

0 comments on commit b9d6708

Please sign in to comment.