forked from kotest/kotest
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (42 loc) · 1.34 KB
/
release_ios.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
name: release_ios
on:
workflow_dispatch:
inputs:
version:
description: "The release version"
required: true
branch:
description: "The branch to release from"
required: true
default: 'master'
env:
RELEASE_VERSION: ${{ github.event.inputs.version }}
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }}
permissions:
contents: read
jobs:
publish_ios:
runs-on: macos-latest
strategy:
max-parallel: 1
matrix:
target:
- "publishIosX64PublicationToDeployRepository"
- "publishIosSimulatorArm64PublicationToDeployRepository"
- "publishIosArm64PublicationToDeployRepository"
steps:
- name: Checkout the repo
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "21"
- uses: gradle/actions/setup-gradle@v4
- name: publish
run: ./gradlew ${{ matrix.target }}