-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (53 loc) · 1.68 KB
/
Copy pathci-release.yml
File metadata and controls
59 lines (53 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Antibytes CI - Publish Release
on:
push:
tags:
- 'v*'
jobs:
build:
uses: bitpogo/workflows/.github/workflows/shared-build-macos.yml@main
concurrency:
group: build-macos
cancel-in-progress: true
check-android:
needs: build
uses: bitpogo/workflows/.github/workflows/shared-test-android-macos.yml@main
with:
projects: "[':integration-kmp', ':integration-android-application']"
api-level: "['31']"
arch: "['x86_64']"
coverage: false
cache-reports: false
concurrency:
group: check-android-${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
check:
needs: build
uses: bitpogo/workflows/.github/workflows/shared-test-kmp.yml@main
with:
cleanup: false
platforms: "['ios', 'macos', 'tvos', 'watchos', 'linux-all', 'mingw']"
concurrency:
group: check
cancel-in-progress: true
docs:
needs: [ check, check-android ]
uses: bitpogo/workflows/.github/workflows/shared-mkdocs-release.yml@main
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
concurrency:
group: docs
cancel-in-progress: true
publish:
needs: [ check, check-android ]
uses: bitpogo/workflows/.github/workflows/shared-publish-release.yml@main
secrets:
upload-username: ${{ secrets.PACKAGE_REGISTRY_UPLOAD_USERNAME }}
upload-token: ${{ secrets.PACKAGE_REGISTRY_UPLOAD_TOKEN }}
maven-key: ${{ secrets.MAVEN_GPG_KEY }}
maven-pass: ${{ secrets.MAVEN_GPG_PASS }}
ossr-username: ${{ secrets.OSSR_USERNAME }}
ossr-password: ${{ secrets.OSSR_PASSWORD }}
concurrency:
group: publish
cancel-in-progress: true