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
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
push:
tags:
- 'v*'

permissions:
contents: read

jobs:
release:
permissions:
contents: write
uses: owncloud/reusable-workflows/.github/workflows/release.yml@main
with:
app-name: firstrunwizard
# "make dist" also builds an unsigned source package; only the appstore
# package is signed, so limit the release to that one.
artifact-glob: build/artifacts/appstore/*.tar.gz
secrets:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SIGNING_CERT: ${{ secrets.SIGNING_CERT }}
SIGNING_CHAIN: ${{ secrets.SIGNING_CHAIN }}
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [1.4.2] - 2026-07-28

### Changed

- Rewire the legacy routes to extension-free urls so they are reachable at their own declared urls - [#203](https://github.com/owncloud/firstrunwizard/pull/203)
Expand Down Expand Up @@ -58,7 +60,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

- Initial implementation

[Unreleased]: https://github.com/owncloud/firstrunwizard/compare/v1.4.1..master
[Unreleased]: https://github.com/owncloud/firstrunwizard/compare/v1.4.2..master
[1.4.2]: https://github.com/owncloud/firstrunwizard/compare/v1.4.1..v1.4.2
[1.4.1]: https://github.com/owncloud/firstrunwizard/compare/v1.4.0..v1.4.1
[1.4.0]: https://github.com/owncloud/firstrunwizard/compare/v1.2.0..v1.4.0
[1.2.0]: https://github.com/owncloud/firstrunwizard/compare/v1.1.1...v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The First run wizard can be customized to meet specific design goals, or to chan
<dependencies>
<owncloud min-version="11" max-version="11" />
</dependencies>
<version>1.4.1</version>
<version>1.4.2</version>
<namespace>FirstRunWizard</namespace>
<default_enable/>
<commands>
Expand Down