Skip to content

Commit

Permalink
Merge branch 'master' into IOAPPX-439-enable-iridescent-trustmark-for…
Browse files Browse the repository at this point in the history
…-all
  • Loading branch information
dmnplb authored Nov 26, 2024
2 parents 7270d94 + 8f5e18e commit 12dde03
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/distribute-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- id: build-release-android
run: |
./scripts/android-release.sh ./android/app
cd android
bundle exec fastlane promote_internal_to_alpha
shell: bash
env:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release-canary.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Canary release
on:
- issue_comment
workflow_dispatch:
issue_comment:
types: [created, edited, deleted]
jobs:
run-static-checks:
if: ${{ github.event.issue.pull_request }} && contains(github.event.comment.body, '/release-canary')
if: contains(github.event.comment.html_url, '/pull/') && contains(github.event.comment.body, '/canary')
uses: ./.github/workflows/staticcheck.yaml
prepare-canary-release:
needs: run-static-checks
Expand All @@ -25,7 +27,7 @@ jobs:
echo "CURRENT_APP_BUILD_CODE=$BUILD_CODE" >> $GITHUB_OUTPUT
- id: replace-version-with-canary
run: |
node scripts/canary/replaceCanaryVersion.js ${{ env.CANARY_VERSION }} ${{ env.CANARY_BUILD_CODE }}
node scripts/canary/replaceCanaryVersion.js ${{ vars.CANARY_VERSION }} ${{ vars.CANARY_BUILD_CODE }}
bash ./.github/scripts/package-name-replacer.sh it.pagopa.io.app it.pagopa.io.app.canary android
bash ./.github/scripts/package-name-replacer.sh it.pagopa.app.io it.pagopa.app.io.canary ios
bash ./.github/scripts/package-name-replacer.sh "git\@github.com:pagopa\/IO-App-certs.git" "git\@github.com:pagopa\/IO-App-canary-certs.git" ios
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Nightly release new app version
on:
schedule:
- cron: '59 23 * * 1,5'
- cron: '59 21 * * 1-5'
workflow_dispatch:
jobs:
run-static-checks:
Expand Down
1 change: 1 addition & 0 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ platform :ios do
distribute_only: true,
distribute_external: true,
notify_external_testers: true,
app_platform: "ios",
groups: ["Amici&Familiari", "PagoPa"],
# max wait for App Store Connect processing (30 min)
wait_processing_timeout_duration: 1800
Expand Down

0 comments on commit 12dde03

Please sign in to comment.