Script deployment to both platforms
This commit is contained in:
parent
a0be83a499
commit
7d47150c15
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
rm -rf build dist
|
||||
scripts/commit-beta.sh
|
||||
ci/beta-archive.sh mac || { echo "Failed to build macOS" ; exit 1 ; }
|
||||
scripts/reset-archive.sh
|
||||
ci/beta-archive.sh ios || { echo "Failed to build iOS" ; exit 1 ; }
|
||||
scripts/reset-archive.sh
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
git add Passepartout/App/*/CHANGELOG.md
|
||||
git add Passepartout/App/*/fastlane/metadata/*/release_notes.txt
|
||||
git commit -m "Set beta release"
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
ci/store-deploy.sh mac || { echo "Failed to deploy macOS" ; exit 1 ; }
|
||||
ci/store-deploy.sh ios || { echo "Failed to deploy iOS" ; exit 1 ; }
|
Loading…
Reference in New Issue