Skip to content

Commit 522bfb9

Browse files
authored
Merge pull request #52 from VariableThe/fix/release-0.5.1
chore: bump version to 0.5.1 and fix homebrew release download pattern
2 parents afbd5e4 + d706b1e commit 522bfb9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ jobs:
8181
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8282
run: |
8383
VERSION=${{ needs.create-tag.outputs.new_version }}
84-
gh release download v$VERSION --pattern "*aarch64.tar.gz" --repo $GITHUB_REPOSITORY
84+
gh release download v$VERSION --pattern "*aarch64.app.tar.gz" --repo $GITHUB_REPOSITORY
8585
8686
# Calculate SHA256 of the downloaded archive
87-
APP_FILE=$(ls *aarch64.tar.gz | head -n 1)
87+
APP_FILE=$(ls *aarch64.app.tar.gz | head -n 1)
8888
SHA256=$(shasum -a 256 "$APP_FILE" | awk '{ print $1 }')
8989
9090
# Update the rb file

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "papercache",
33
"private": true,
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/2.0.0/tauri.schema.json",
33
"productName": "PaperCache",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"identifier": "com.variablethe.papercache",
66
"build": {
77
"beforeDevCommand": "npm run dev",

0 commit comments

Comments
 (0)