Skip to content

Commit 5d995d9

Browse files
wesbillmanPinky
andauthored
chore(release): release version 0.3.22 (#1038)
Signed-off-by: Wes <wesbillman@users.noreply.github.com> Co-authored-by: Pinky <44b8e82baa6e0e254e0208d68f335c283c94e7b78dd1fa10d5a49d3f13dd0435@sprout-oss.stage.blox.sqprod.co>
1 parent 455d184 commit 5d995d9

7 files changed

Lines changed: 17 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ jobs:
279279
run: gh release upload "v${VERSION}" "$DMG_PATH" --clobber
280280

281281
- name: Upload updater archive to rolling release
282-
if: github.event_name == 'push'
282+
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
283283
run: |
284284
gh release upload buzz-desktop-latest \
285285
"$ARCHIVE_PATH" \
@@ -428,7 +428,7 @@ jobs:
428428
DMG_PATH: ${{ steps.unsigned.outputs.dmg }}
429429

430430
- name: Upload updater archive to rolling release
431-
if: github.event_name == 'push'
431+
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
432432
run: |
433433
gh release upload buzz-desktop-latest \
434434
"$ARCHIVE_PATH" \
@@ -574,7 +574,7 @@ jobs:
574574
--clobber
575575
576576
- name: Upload updater archive to rolling release
577-
if: github.event_name == 'push'
577+
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
578578
run: |
579579
gh release upload buzz-desktop-latest \
580580
"$ARCHIVE_PATH" \
@@ -700,7 +700,7 @@ jobs:
700700
EXE_PATH: ${{ steps.artifacts.outputs.exe }}
701701

702702
- name: Upload updater archive to rolling release
703-
if: github.event_name == 'push'
703+
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
704704
shell: bash
705705
run: |
706706
gh release upload buzz-desktop-latest \
@@ -714,9 +714,9 @@ jobs:
714714

715715
assemble-manifest:
716716
name: Assemble multi-platform latest.json
717-
# Only a real tag push assembles latest.json — a branch workflow_dispatch
718-
# skips the rolling-release uploads, so its archive URLs never exist.
719-
if: github.event_name == 'push'
717+
# Only tag-backed releases assemble latest.json. Branch workflow_dispatch
718+
# runs skip rolling-release uploads, so their archive URLs never exist.
719+
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
720720
runs-on: ubuntu-latest
721721
needs: [setup, release, release-macos-x64, release-linux, release-windows]
722722
timeout-minutes: 10

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.3.22
4+
5+
fix(release): publish rolling updater manifest for automated release tags
6+
7+
38
## v0.3.21
49

510
4d19a590 fix(release): use signed NSIS installer for updates (#1036)

desktop/package.json

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

desktop/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.

desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "buzz-desktop"
5-
version = "0.3.21"
5+
version = "0.3.22"
66
description = "Buzz desktop app"
77
authors = ["you"]
88
edition = "2021"

desktop/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": "Buzz",
4-
"version": "0.3.21",
4+
"version": "0.3.22",
55
"identifier": "xyz.block.buzz.app",
66
"build": {
77
"beforeDevCommand": {

mobile/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: buzz
22
description: Buzz mobile client
33
publish_to: 'none'
4-
version: 0.3.21+1
4+
version: 0.3.22+1
55

66
environment:
77
sdk: ^3.11.4

0 commit comments

Comments
 (0)