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
6 changes: 5 additions & 1 deletion docs/ci/github.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ name: Shorebird Patch

on:
workflow_dispatch:
inputs:
release_version:
description: The release version to patch
required: true

jobs:
patch:
Expand All @@ -122,7 +126,7 @@ jobs:
uses: shorebirdtech/setup-shorebird@v0

- name: 🚀 Shorebird Patch
run: shorebird patch android --force
run: shorebird patch android --release-version ${{ inputs.release_version }} --force
env:
SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }}
```