Skip to content

Commit

Permalink
Update prep-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
crow committed Dec 9, 2024
1 parent 04bdcf9 commit cd8088d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/prep-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ jobs:
- name: Run Updates
run: |
./scripts/update_version.sh "${{ github.event.inputs.flutter_version }}" || exit 1
./scripts/update_proxy_version.sh "${{ github.event.inputs.proxy_version }}" || exit 1
if [ -n "${{ github.event.inputs.ios_version }}" ] && [ -n "${{ github.event.inputs.android_version }}" ]; then
./scripts/update_changelog.sh "${{ github.event.inputs.flutter_version }}" "${{ github.event.inputs.proxy_version }}" "${{ github.event.inputs.ios_version }}" "${{ github.event.inputs.android_version }}" || exit 1
if [ -n "${{ github.event.inputs.proxy_version }}" ]; then
./scripts/update_proxy_version.sh "${{ github.event.inputs.proxy_version }}" || exit 1
fi
./scripts/update_changelog.sh "${{ github.event.inputs.flutter_version }}" \
$([ -n "${{ github.event.inputs.ios_version }}" ] && echo "--ios ${{ github.event.inputs.ios_version }}") \
$([ -n "${{ github.event.inputs.android_version }}" ] && echo "--android ${{ github.event.inputs.android_version }}") || exit 1
- name: Verify Changes
id: verify
Expand Down

0 comments on commit cd8088d

Please sign in to comment.