dependabot[bot]
f098fb4cdc
chore(actions): bump the actions group with 4 updates
...
Bumps the actions group with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact ), [actions/github-script](https://github.com/actions/github-script ), [nick-fields/retry](https://github.com/nick-fields/retry ) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release ).
Updates `actions/upload-artifact` from 6 to 7
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7 )
Updates `actions/github-script` from 7 to 9
- [Release notes](https://github.com/actions/github-script/releases )
- [Commits](https://github.com/actions/github-script/compare/v7...v9 )
Updates `nick-fields/retry` from 3.0.2 to 4.0.0
- [Release notes](https://github.com/nick-fields/retry/releases )
- [Commits](https://github.com/nick-fields/retry/compare/ce71cc2ab81d554ebbe88c79ab5975992d79ba08...ad984534de44a9489a53aefd81eb77f87c70dc60 )
Updates `softprops/action-gh-release` from 2.6.2 to 3.0.0
- [Release notes](https://github.com/softprops/action-gh-release/releases )
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md )
- [Commits](https://github.com/softprops/action-gh-release/compare/3bb12739c298aeb8a4eeaf626c5b8d85266b0e65...b4309332981a82ec1c5618f44dd2e27cc8bfbfda )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: actions
- dependency-name: actions/github-script
dependency-version: '9'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: actions
- dependency-name: nick-fields/retry
dependency-version: 4.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: actions
- dependency-name: softprops/action-gh-release
dependency-version: 3.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-04-17 12:20:54 +00:00
nrobi144
84c4b461a9
fix(release): address code review findings (P1-P3)
...
P1 fixes (must-fix):
- AppRun: VLC path corrected to usr/lib/app/linux/vlc (jpackage actual
path), add VLC_PLUGIN_PATH env var for codec discovery
- linuxdeploy: use APPIMAGE_EXTRACT_AND_RUN=1 env var to bypass FUSE
on CI runners instead of fragile pre-extract + symlink approach
- Prerelease classifier: inverted to positive-match stable format
(^v[0-9]+\.[0-9]+\.[0-9]+$) across desktop, Android, and composite
action — eliminates regex drift between allowlists
- assert-stable-release: now accepts inputs (tag, is_prerelease,
is_draft) so workflow_dispatch on bump workflows also validates
P2 fixes (should-fix):
- .gitignore: add linuxdeploy-*.AppImage and extracted dirs
- RPM version: use replace("-", "~") instead of substringBefore("-")
for correct RPM prerelease ordering (1.08.0~rc1 < 1.08.0)
- linux-portable → linux alias moved into collect_assets() in
scripts/asset-name.sh (single source of truth)
- Android cache key: add gradle/libs.versions.toml to hashFiles
- r0adkll/sign-android-release: SHA-pinned to 349ebdef (v1)
P3 fixes (nice-to-have):
- LINUXDEPLOY_OUTPUT_VERSION env var replaced with
APPIMAGE_EXTRACT_AND_RUN (misleading comment + redundant var)
- nick-fields/retry timeout: 40m → 15m (surface real hangs)
- generate_release_notes: true only on Android job (avoid
last-writer-wins race across 6 concurrent uploaders)
- apt-get install rpm: tightened guard to matrix.family == 'linux'
(linux-portable leg doesn't need rpm tooling)
2026-04-17 11:03:01 +03:00
nrobi144
c428661601
feat(release): expand desktop distribution to 8 assets + 2 package managers
...
Phases 3, 4, 5, 6 of the multi-platform distribution plan.
## create-release.yml rewrite
- Replace deprecated actions/create-release@v1 + upload-release-asset@v1 with
softprops/action-gh-release@v2 (SHA-pinned)
- Expand build-desktop matrix: macos-13 (Intel), macos-14 (ARM),
windows-latest, ubuntu-latest × 2 legs (deb+rpm, AppImage+tar.gz)
- Each matrix job uploads directly to release (no artifact round-trip — saves
~10 min + 1.5GB transfer per run)
- Inline portable archives: Windows .zip via 7z, Linux .tar.gz via tar
- linuxdeploy SHA-verified fetch for AppImage builds (not `continuous` tag)
- Per-asset size budget: hard fail at 1 GB per asset
- prerelease inferred from tag regex (-rc|-beta|-alpha|-dev|-snapshot)
- workflow_dispatch dry_run input: builds all assets without publishing,
skips Android + bump workflows
- Tag-vs-libs.versions.toml assertion as first step in each matrix job
- Android + Quartz jobs preserved; migrated to softprops/action-gh-release@v2
## Package manager bump workflows (Homebrew + Winget)
- .github/workflows/bump-homebrew.yml — macauley/action-homebrew-bump-cask
on ubuntu-latest (saves macOS runner quota). Cask name: `amethyst-nostr`.
- .github/workflows/bump-winget.yml — vedantmgoyal9/winget-releaser on
windows-latest. PackageIdentifier: `VitorPamplona.Amethyst`.
- Shared composite action .github/actions/assert-stable-release rejects
draft/prerelease/malformed-tag releases at action boundary (defense in
depth vs workflow-level `if:` alone).
- Both workflows auto-open `release-ops`-labeled GH Issues on failure.
- Concurrency groups per tag prevent re-fire races.
- AUR + Scoop deferred to follow-up PR (unresolved ownership questions).
## Documentation
- BUILDING.md: per-platform build commands, asset naming contract, release
runbook, bootstrap runbook, troubleshooting, uninstall paths, incident
response, fallback plans (macos-13 retirement, Homebrew Sept 2026 deadline)
- README: expanded Download section with per-OS install matrix for 7 formats
+ 2 package managers. Deploying section points at BUILDING.md.
## Supply chain
- .github/dependabot.yml: monthly bumps for github-actions ecosystem
- All new third-party actions SHA-pinned:
- softprops/action-gh-release v2.6.2
- macauley/action-homebrew-bump-cask v4.0.0
- vedantmgoyal9/winget-releaser v2
- nick-fields/retry v3.0.2
- linuxdeploy binary SHA256-verified against pinned release tag
2026-04-16 14:54:51 +03:00
Claude
8cbd11816e
ci: add explicit permissions to workflows
2026-03-28 09:32:48 +00:00
Vitor Pamplona
b0c714176a
Updates versions for github actions
2026-03-16 18:46:39 -04:00
Claude
d996911cda
feat: add cross-platform CI for Linux, macOS, and Windows
...
- Split build.yml into lint, test (matrix: 3 OS), build-android, and
build-desktop (matrix: 3 OS with native packaging) jobs
- Tests now run on ubuntu, macos, and windows to validate cross-platform
compatibility
- Desktop distributions (DEB, DMG, MSI) built on their native OS and
uploaded as artifacts
- Split create-release.yml into create-release, deploy-android, and
deploy-desktop jobs so desktop distributions are included in releases
- Android APK/AAB builds and Quartz publishing remain on Linux
https://claude.ai/code/session_016dxFUErY4P6WRir4xxhCEr
2026-03-15 21:34:18 +00:00
Vitor Pamplona
ce81157dad
Adds a maven publishing to ship quartz
2025-09-23 15:16:26 -04:00
Vitor Pamplona
58277d9697
Moves build tools of github actions to 36
2025-08-07 14:24:45 -04:00
Vitor Pamplona
7f6435ba57
Updates build tools to java 21
2025-08-01 17:07:31 -04:00
Vitor Pamplona
8e212bbb55
changing JVM of actions to zulu to see if java/kotlin compilation errors improve.
2024-07-03 14:16:16 -04:00
Vitor Pamplona
1fafb6a503
updates create release script to match new directories
2024-06-28 16:58:45 -04:00
Vitor Pamplona
4609d6e343
changes app directory to amethyst
2024-06-24 14:13:55 -04:00
Vitor Pamplona
64c4f7dc95
Removes extra new line
2024-03-04 10:29:19 -05:00
Vitor Pamplona
b3211cbb35
Removes the release drafter plugin on actions. Too buggy
2024-03-04 09:37:32 -05:00
Vitor Pamplona
a97ade41fa
adds a release drafter to test
2024-02-19 18:55:29 -05:00
Vitor Pamplona
21472daab5
Uses new build tools to sign releases
2024-01-11 12:32:58 -05:00
Vitor Pamplona
c6a00386c8
adds distribution to github actions
2024-01-11 12:23:36 -05:00
Vitor Pamplona
9e3aa31c25
Updates Github actions scripts.
2024-01-11 12:06:45 -05:00
Rif'at Ahdi R
fc9500b45c
Update create-release.yml to suppport arm64-v8a and armeabi-v7a
2023-09-05 10:39:36 +08:00
Vitor Pamplona
6eaba7956c
Sets releases as pre-release by default.
2023-08-12 10:31:08 -04:00
Vitor Pamplona
e6a0fdedd9
Removes unnecessary signing step
2023-08-04 20:57:21 -04:00
Vitor Pamplona
8071d48911
updates github action to support minified versions of the app
2023-08-04 14:24:11 -04:00
Vitor Pamplona
806b86f950
Testing a release build script with deamon
2023-06-16 16:36:20 -04:00
Vitor Pamplona
b28f0bff74
Updating build scripts to java 17
2023-04-19 11:24:49 -04:00
Vitor Pamplona
d4be271060
Fixing typos in the path
2023-03-14 16:27:28 -04:00
Vitor Pamplona
2d59baf898
Uses unique IDs for each job in Actions
2023-03-14 16:14:17 -04:00
Vitor Pamplona
f65e09f388
Adding scripts to release all variants of the app
2023-03-14 15:55:08 -04:00
Vitor Pamplona
09168edd74
Removing deployments of WAR assets
2023-01-11 15:21:39 -05:00
Vitor Pamplona
72241e9eb1
Readme and CI
2023-01-11 15:06:02 -05:00