-
Notifications
You must be signed in to change notification settings - Fork 232
39 lines (32 loc) · 1.1 KB
/
release-start.yml
File metadata and controls
39 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: "Start new release"
on:
workflow_dispatch:
inputs:
version:
description: 'Release version'
type: string
required: true
jobs:
test-release:
name: Start new release
runs-on: macos-15
steps:
- name: Connect Bot
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0 # to fetch git tags
- uses: ./.github/actions/ruby-cache
- uses: ./.github/actions/xcode-cache
- name: Integration Test
run: gh workflow run test.yml --repo GetStream/apple-internal-testing-pipeline # reports to @support on failure
env:
GITHUB_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
- name: Create Release PR
run: bundle exec fastlane release version:"${{ github.event.inputs.version }}" --verbose
env:
GITHUB_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }}