Skip to content

Commit 71b73ca

Browse files
committed
Add release pipeline to call the new download_release_translations lane
1 parent 1b11262 commit 71b73ca

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
2+
---
3+
4+
agents:
5+
queue: mac
6+
7+
env:
8+
IMAGE_ID: $IMAGE_ID
9+
10+
steps:
11+
- label: Download Release Translations
12+
plugins: [$CI_TOOLKIT]
13+
command: |
14+
echo '--- :robot_face: Use bot for Git operations'
15+
source use-bot-for-git
16+
17+
.buildkite/commands/checkout-release-branch.sh "$RELEASE_VERSION"
18+
19+
echo '--- :ruby: Setup Ruby Tools'
20+
install_gems
21+
22+
echo '--- :closed_lock_with_key: Access Secrets'
23+
bundle exec fastlane run configure_apply
24+
25+
echo '--- :globe_with_meridians: Download Release Translations'
26+
bundle exec fastlane download_release_translations skip_confirm:true
27+
retry:
28+
manual:
29+
# If those jobs fail, one should always prefer re-triggering a new build from ReleaseV2 rather than retrying the individual job from Buildkite
30+
allowed: false

0 commit comments

Comments
 (0)