-
Notifications
You must be signed in to change notification settings - Fork 14
127 lines (112 loc) · 3.87 KB
/
release.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: Release
on:
workflow_dispatch:
inputs:
dryRun:
description: "Do a dry run to preview instead of a real release"
required: true
default: "true"
jobs:
authorize:
name: Authorize
runs-on: macos-latest
steps:
- name: ${{ github.actor }} permission check to do a release
uses: octokit/[email protected]
with:
route: GET /repos/:repository/collaborators/${{ github.actor }}
repository: ${{ github.repository }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release:
name: Release
runs-on: macos-latest
needs: [authorize]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Xcode 13.4
run: |
sudo xcode-select -switch /Applications/Xcode_13.4.app
- name: iOS Build
run: |
xcodebuild \
-project AnalyticsConnector.xcodeproj \
-scheme AnalyticsConnector \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 12,OS=15.5'
- name: macOS Build
run: |
xcodebuild \
-project AnalyticsConnector.xcodeproj \
-scheme AnalyticsConnector \
-sdk macosx \
-destination 'platform=macosx' \
- name: tvOS Build
run: |
xcodebuild \
-project AnalyticsConnector.xcodeproj \
-scheme AnalyticsConnector \
-sdk appletvsimulator \
-destination 'platform=tvOS Simulator,name=Apple TV' \
- name: iOS Tests
run: |
xcodebuild test \
-project AnalyticsConnector.xcodeproj \
-scheme AnalyticsConnector \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 12,OS=15.5'
- name: macOS Tests
run: |
xcodebuild \
-project AnalyticsConnector.xcodeproj \
-scheme AnalyticsConnector \
-sdk macosx \
-destination 'platform=macosx' \
test
- name: tvOS Tests
run: |
xcodebuild \
-project AnalyticsConnector.xcodeproj \
-scheme AnalyticsConnector \
-sdk appletvsimulator \
-destination 'platform=tvOS Simulator,name=Apple TV' \
test
- name: Validate Podfile
run: pod lib lint --allow-warnings
- name: Semantic Release --dry-run
if: ${{ github.event.inputs.dryRun == 'true'}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
GIT_AUTHOR_NAME: amplitude-sdk-bot
GIT_AUTHOR_EMAIL: [email protected]
GIT_COMMITTER_NAME: amplitude-sdk-bot
GIT_COMMITTER_EMAIL: [email protected]
run: |
npx \
-p lodash \
-p semantic-release \
-p @semantic-release/changelog \
-p @semantic-release/git \
-p @google/semantic-release-replace-plugin \
-p @semantic-release/exec \
semantic-release --dry-run
- name: Semantic Release
if: ${{ github.event.inputs.dryRun == 'false'}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
GIT_AUTHOR_NAME: amplitude-sdk-bot
GIT_AUTHOR_EMAIL: [email protected]
GIT_COMMITTER_NAME: amplitude-sdk-bot
GIT_COMMITTER_EMAIL: [email protected]
run: |
npx \
-p lodash \
-p semantic-release \
-p @semantic-release/changelog \
-p @semantic-release/git \
-p @google/semantic-release-replace-plugin \
-p @semantic-release/exec \
semantic-release