Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ on:

jobs:
release:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
platform: [ macos-latest, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
Expand Down Expand Up @@ -46,8 +48,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: v__VERSION__ # tauri-action replaces \_\_VERSION\_\_ with the app version
releaseName: 'v__VERSION__'
releaseBody: 'See the assets to download this version and install.'
tagName: ${{ github.ref_name }}
releaseName: 'Advanced PassGen v__VERSION__'
releaseBody: 'See the assets to download and install this version.'
releaseDraft: true
prerelease: false
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
platform: [ macos-latest, ubuntu-latest, windows-latest ]

runs-on: ${{ matrix.platform }}
steps:
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.5",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.14.0",
"@mui/system": "^5.14.0",
"@mui/x-data-grid": "^6.9.2",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.1",
"@mui/system": "^5.14.1",
"@mui/x-data-grid": "^6.10.0",
"@shopify/react-web-worker": "^5.0.13",
"@tauri-apps/api": "^1.4.0",
"crypto-js": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.1"
"react-router-dom": "^6.14.2"
},
"scripts": {
"start": "vite",
Expand Down Expand Up @@ -47,14 +47,14 @@
"@tauri-apps/cli": "^1.4.0",
"@vitejs/plugin-react": "^4.0.3",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"vite": "^4.4.3",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^3.2.0"
}
Expand Down
Loading