diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 93911c1..e9e02ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,10 +81,10 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | VERSION=${{ needs.create-tag.outputs.new_version }} - gh release download v$VERSION --pattern "*aarch64.tar.gz" --repo $GITHUB_REPOSITORY + gh release download v$VERSION --pattern "*aarch64.app.tar.gz" --repo $GITHUB_REPOSITORY # Calculate SHA256 of the downloaded archive - APP_FILE=$(ls *aarch64.tar.gz | head -n 1) + APP_FILE=$(ls *aarch64.app.tar.gz | head -n 1) SHA256=$(shasum -a 256 "$APP_FILE" | awk '{ print $1 }') # Update the rb file diff --git a/package.json b/package.json index 519e0c2..460335a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "papercache", "private": true, - "version": "0.5.0", + "version": "0.5.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index fc9ceb0..848065f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/2.0.0/tauri.schema.json", "productName": "PaperCache", - "version": "0.5.0", + "version": "0.5.1", "identifier": "com.variablethe.papercache", "build": { "beforeDevCommand": "npm run dev",