Skip to content

Commit 3fa0fc8

Browse files
committed
fix: publish github action
1 parent 8108210 commit 3fa0fc8

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
args: ""
2020
runs-on: ${{ matrix.platform }}
2121
steps:
22-
- uses: actions/checkout@v4.2.2
22+
- uses: actions/checkout@v5
2323

2424
- uses: pnpm/action-setup@v4
2525
name: Install pnpm
@@ -46,7 +46,7 @@ jobs:
4646
- name: install frontend dependencies
4747
run: pnpm install
4848

49-
- uses: tauri-apps/tauri-action@dev
49+
- uses: tauri-apps/tauri-action@v0.6.0
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5252
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
@@ -55,7 +55,7 @@ jobs:
5555
tagName: wasp-launcher-v__VERSION__
5656
releaseName: "WaspLauncher v__VERSION__"
5757
releaseBody: "See the assets to download this version and install."
58-
assetNamePattern: "[name].[ext]"
58+
releaseAssetNamePattern: "[name].[ext]"
5959
releaseDraft: false
6060
prerelease: false
6161
args: ${{ matrix.args }}

.github/workflows/version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4.2.2
14+
- uses: actions/checkout@v5
1515
- name: "Print previous package.json"
1616
run: cat ./package.json
1717
- name: "Bump version"

src/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@import "@skeletonlabs/skeleton/themes/cerberus";
77
@import "@skeletonlabs/skeleton/themes/concord";
88
@import "@skeletonlabs/skeleton/themes/fennec";
9-
@import "../wasp";
9+
@import "./wasp";
1010

1111
@custom-variant dark (&:where(.dark, .dark *));
1212

src/routes/settings/general/+page.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ If you keep having issues, it's recommened you close all of your runescape clien
7272

7373
<dialog
7474
bind:this={dialog}
75-
data-dialog
7675
class="top-1/2 left-1/2 z-10 max-w-[640px] -translate-1/2 space-y-4 rounded-container bg-surface-100-900 p-4 text-inherit backdrop:bg-surface-50/75 dark:backdrop:bg-surface-950/75"
7776
>
7877
<h2 class="h3">Reinstall Plugins</h2>
File renamed without changes.

0 commit comments

Comments
 (0)