mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
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>
This commit is contained in:
@@ -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" \
|
||||
@@ -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" \
|
||||
@@ -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" \
|
||||
@@ -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 \
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "buzz",
|
||||
"private": true,
|
||||
"version": "0.3.21",
|
||||
"version": "0.3.22",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
Generated
+1
-1
@@ -846,7 +846,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "buzz-desktop"
|
||||
version = "0.3.21"
|
||||
version = "0.3.22"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atomic-write-file",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "buzz-desktop"
|
||||
version = "0.3.21"
|
||||
version = "0.3.22"
|
||||
description = "Buzz desktop app"
|
||||
authors = ["you"]
|
||||
edition = "2021"
|
||||
|
||||
@@ -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": {
|
||||
|
||||
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user