-
Notifications
You must be signed in to change notification settings - Fork 2
112 lines (104 loc) · 3.65 KB
/
publish-snapshot.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
name: Library Snapshot Deploy
on:
push:
branches-ignore: [ "main" ]
workflow_dispatch:
env:
GITHUB_USERNAME: "meetacy"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
ORG_GRADLE_PROJECT_snapshot: true
ORG_GRADLE_PROJECT_commit: ${{ github.sha }}
ORG_GRADLE_PROJECT_attempt: ${{ github.run_attempt }}
jobs:
deploy-multiplatform:
runs-on: ubuntu-latest
outputs:
snapshot_version: ${{ steps.output_version.outputs.snapshot_version }}
steps:
- uses: actions/checkout@v3
- name: Gradle Cache Setup
uses: gradle/[email protected]
with:
cache-read-only: ${{ github.ref != 'refs/heads/dev' }}
- name: Gradle Sync
run: ./gradlew
- name: Add Sdk Version to Env
run: |
snapshot_version=$(./gradlew printSdkVersion -q)
echo "snapshot_version=$snapshot_version" >> $GITHUB_ENV
- name: Publish ${{ env.snapshot_version }}
run: ./gradlew publishKotlinMultiplatformPublicationToMeetacySdkRepository
- name: Add Sdk Version to Output
id: output_version
run: echo "snapshot_version=${{ env.snapshot_version }}" >> $GITHUB_OUTPUT
deploy-jvm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Gradle Cache Setup
uses: gradle/[email protected]
with:
cache-read-only: ${{ github.ref != 'refs/heads/dev' }}
- name: Gradle Sync
run: ./gradlew
- name: Add Sdk Version to Env
run: |
snapshot_version=$(./gradlew printSdkVersion -q)
echo "snapshot_version=$snapshot_version" >> $GITHUB_ENV
- name: Publish ${{ env.snapshot_version }}
run: ./gradlew publishJvmPublicationToMeetacySdkRepository
deploy-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Gradle Cache Setup
uses: gradle/[email protected]
with:
cache-read-only: ${{ github.ref != 'refs/heads/dev' }}
- name: Gradle Sync
run: ./gradlew
- name: Add Sdk Version to Env
run: |
snapshot_version=$(./gradlew printSdkVersion -q)
echo "snapshot_version=$snapshot_version" >> $GITHUB_ENV
- name: Publish ${{ env.snapshot_version }}
run: ./gradlew publishJsPublicationToMeetacySdkRepository
deploy-konan:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Gradle Cache Setup
uses: gradle/[email protected]
with:
cache-read-only: ${{ github.ref != 'refs/heads/dev' }}
- name: Konan Cache Setup
uses: actions/cache@v3
with:
path: ~/.konan
key: konan-cache
- name: Gradle Sync
run: ./gradlew
- name: Add Sdk Version to Env
run: |
snapshot_version=$(./gradlew printSdkVersion -q)
echo "snapshot_version=$snapshot_version" >> $GITHUB_ENV
- name: Publish ${{ env.snapshot_version }}
run: |
./gradlew publishIosX64PublicationToMeetacySdkRepository \
publishIosSimulatorArm64PublicationToMeetacySdkRepository \
publishIosArm64PublicationToMeetacySdkRepository
create-release:
runs-on: ubuntu-latest
needs:
- deploy-multiplatform
- deploy-jvm
- deploy-js
- deploy-konan
steps:
- name: Create Release
uses: actions/create-release@v1
with:
tag_name: ${{ needs.deploy-multiplatform.outputs.snapshot_version }}
release_name: Build ${{ needs.deploy-multiplatform.outputs.snapshot_version }}
prerelease: true