Skip to content

Commit

Permalink
ci: allow re-run with same version
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Jan 26, 2024
1 parent 8a39562 commit a947a5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ jobs:
path: ./build/ios/ipa/myWitWallet.ipa

Release:
needs: [Windows, Linux, MacOs, Android, IOS]
needs: [Linux, MacOs, Android]
runs-on: ubuntu-latest
permissions:
contents: write
Expand All @@ -407,12 +407,10 @@ jobs:
- name: Organize Releases
run: |
cd release
mv windows/* .
mv linux/* .
mv macos/* .
mv android/* .
mv ios/* .
rm -rf windows linux macos android ios
rm -rf linux macos android
- name: Publish Github Release
uses: ncipollo/release-action@v1
Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ platform :ios do

# ! Echo bigger number + 1
biggerBN = latestTestFlightBN > latestAppStoreBN ? latestTestFlightBN : latestAppStoreBN
UI.message "Please use VersionCode: #{biggerBN+1}"
UI.message "Please use VersionCode: #{biggerBN+4}"
end

############ ? Prepare CI Lane ############
Expand Down

0 comments on commit a947a5b

Please sign in to comment.