Skip to content

Commit 690370d

Browse files
committed
chore(release): v0.1.6
1 parent 75519f7 commit 690370d

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
echo "✗ TAURI_SIGNING_PRIVATE_KEY is NOT set"
5555
fi
5656
57-
- uses: tauri-apps/tauri-action@v0
57+
- uses: tauri-apps/tauri-action@v0.5
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
@@ -73,6 +73,14 @@ jobs:
7373
echo "Checking for .sig files in target directory..."
7474
find src-tauri/target -name "*.sig" -type f || echo "No .sig files found"
7575
76+
- name: List all release assets
77+
shell: bash
78+
env:
79+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80+
run: |
81+
echo "Listing all assets in the draft release..."
82+
gh release view "v__VERSION__" --json assets --jq '.assets[].name' || echo "Could not list release assets"
83+
7684
update-release-json:
7785
needs: release
7886
runs-on: ubuntu-latest

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dota-keeper",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dota-keeper"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "A Tauri App"
55
authors = ["stringhandler"]
66
edition = "2021"

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/config/2",
33
"productName": "dota-keeper",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"identifier": "com.volthawk.dota-keeper",
66
"build": {
77
"beforeDevCommand": "yarn dev",

0 commit comments

Comments
 (0)