Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,20 @@ concurrency:
group: release-${{ github.ref_name }}
cancel-in-progress: false

# `previous-app-id` is the App Store id this app shipped under before the
# rename. The store keys everything on the id, so `keepiq` is a brand new
# entry starting from nothing -- without this the version line restarts
# BELOW what the app already published as `doriath`, and the store accepts
# that with a 200 and then never offers it to anyone. Drop the input once
# the `doriath` entry is retired.
jobs:
unstable:
if: github.ref == 'refs/heads/development'
uses: ConductionNL/.github/.github/workflows/release.yml@main
with:
release-type: unstable
app-name: keepiq
previous-app-id: doriath
secrets: inherit

beta:
Expand All @@ -42,6 +49,7 @@ jobs:
with:
release-type: beta
app-name: keepiq
previous-app-id: doriath
secrets: inherit

stable:
Expand All @@ -50,4 +58,5 @@ jobs:
with:
release-type: stable
app-name: keepiq
previous-app-id: doriath
secrets: inherit
Loading