Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ jobs:
run: gh release upload "v${VERSION}" "$DMG_PATH" --clobber

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

- name: Upload updater archive to rolling release
if: github.event_name == 'push'
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
run: |
gh release upload buzz-desktop-latest \
"$ARCHIVE_PATH" \
Expand Down Expand Up @@ -574,7 +574,7 @@ jobs:
--clobber

- name: Upload updater archive to rolling release
if: github.event_name == 'push'
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
run: |
gh release upload buzz-desktop-latest \
"$ARCHIVE_PATH" \
Expand Down Expand Up @@ -700,7 +700,7 @@ jobs:
EXE_PATH: ${{ steps.artifacts.outputs.exe }}

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

assemble-manifest:
name: Assemble multi-platform latest.json
# Only a real tag push assembles latest.json — a branch workflow_dispatch
# skips the rolling-release uploads, so its archive URLs never exist.
if: github.event_name == 'push'
# Only tag-backed releases assemble latest.json. Branch workflow_dispatch
# runs skip rolling-release uploads, so their archive URLs never exist.
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.ref == format('v{0}', inputs.version))
runs-on: ubuntu-latest
needs: [setup, release, release-macos-x64, release-linux, release-windows]
timeout-minutes: 10
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.3.22

fix(release): publish rolling updater manifest for automated release tags


## v0.3.21

4d19a590 fix(release): use signed NSIS installer for updates (#1036)
Expand Down
2 changes: 1 addition & 1 deletion desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "buzz",
"private": true,
"version": "0.3.21",
"version": "0.3.22",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "buzz-desktop"
version = "0.3.21"
version = "0.3.22"
description = "Buzz desktop app"
authors = ["you"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Buzz",
"version": "0.3.21",
"version": "0.3.22",
"identifier": "xyz.block.buzz.app",
"build": {
"beforeDevCommand": {
Expand Down
2 changes: 1 addition & 1 deletion mobile/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: buzz
description: Buzz mobile client
publish_to: 'none'
version: 0.3.21+1
version: 0.3.22+1

environment:
sdk: ^3.11.4
Expand Down