Skip to content

Commit c3f845e

Browse files
authored
Merge pull request #75 from CodeDead/feature/upgrades
Feature/upgrades
2 parents 5d7a1e8 + e43014f commit c3f845e

File tree

27 files changed

+712
-1281
lines changed

27 files changed

+712
-1281
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ on:
88

99
jobs:
1010
release:
11+
permissions:
12+
contents: write
1113
strategy:
1214
fail-fast: false
1315
matrix:
14-
platform: [macos-latest, ubuntu-latest, windows-latest]
16+
platform: [ macos-latest, ubuntu-latest, windows-latest ]
1517
runs-on: ${{ matrix.platform }}
1618
steps:
1719
- name: Checkout repository
@@ -46,8 +48,8 @@ jobs:
4648
env:
4749
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4850
with:
49-
tagName: v__VERSION__ # tauri-action replaces \_\_VERSION\_\_ with the app version
50-
releaseName: 'v__VERSION__'
51-
releaseBody: 'See the assets to download this version and install.'
51+
tagName: ${{ github.ref_name }}
52+
releaseName: 'Advanced PassGen v__VERSION__'
53+
releaseBody: 'See the assets to download and install this version.'
5254
releaseDraft: true
5355
prerelease: false

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
platform: [macos-latest, ubuntu-latest, windows-latest]
23+
platform: [ macos-latest, ubuntu-latest, windows-latest ]
2424

2525
runs-on: ${{ matrix.platform }}
2626
steps:

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
"@emotion/react": "^11.11.1",
77
"@emotion/styled": "^11.11.0",
88
"@fontsource/roboto": "^5.0.5",
9-
"@mui/icons-material": "^5.14.0",
10-
"@mui/material": "^5.14.0",
11-
"@mui/system": "^5.14.0",
12-
"@mui/x-data-grid": "^6.9.2",
9+
"@mui/icons-material": "^5.14.1",
10+
"@mui/material": "^5.14.1",
11+
"@mui/system": "^5.14.1",
12+
"@mui/x-data-grid": "^6.10.0",
1313
"@shopify/react-web-worker": "^5.0.13",
1414
"@tauri-apps/api": "^1.4.0",
1515
"crypto-js": "^4.1.1",
1616
"react": "^18.2.0",
1717
"react-dom": "^18.2.0",
18-
"react-router-dom": "^6.14.1"
18+
"react-router-dom": "^6.14.2"
1919
},
2020
"scripts": {
2121
"start": "vite",
@@ -47,14 +47,14 @@
4747
"@tauri-apps/cli": "^1.4.0",
4848
"@vitejs/plugin-react": "^4.0.3",
4949
"cross-env": "^7.0.3",
50-
"eslint": "^8.44.0",
50+
"eslint": "^8.45.0",
5151
"eslint-config-airbnb": "^19.0.4",
5252
"eslint-config-react-app": "^7.0.1",
5353
"eslint-plugin-import": "^2.27.5",
5454
"eslint-plugin-jsx-a11y": "^6.7.1",
5555
"eslint-plugin-react": "^7.32.2",
5656
"eslint-plugin-react-hooks": "^4.6.0",
57-
"vite": "^4.4.3",
57+
"vite": "^4.4.5",
5858
"vite-plugin-eslint": "^1.8.1",
5959
"vite-plugin-svgr": "^3.2.0"
6060
}

0 commit comments

Comments
 (0)