-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (70 loc) · 2.05 KB
/
publish.yaml
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
name: 'Build & Publish package to GitHub Packages'
on:
workflow_dispatch:
inputs:
webrtc_branch:
type: string
required: true
description: 'WebRTCブランチ'
default: 'master'
env:
AAR_PATH: src/libwebrtc.aar
jobs:
build:
runs-on: self-hosted
outputs:
revision: ${{ steps.revision.outputs.revision }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build
run: |
export PATH="$PATH:$GITHUB_WORKSPACE/depot_tools"
fetch --nohooks webrtc_android
gclient sync
cd src && ./build/install-build-deps.sh
git checkout ${{ github.event.inputs.webrtc_branch }}
tools_webrtc/android/build_aar.py
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: aar
path: ${{ env.AAR_PATH }}
- name: Save revision
id: revision
run: |
cd src
echo "revision=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: aar
path: ${{ github.workspace }}
- name: Set up Java for publishing to GitHub Packages
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: Publish to GitHub Packages
run: |
mvn --batch-mode deploy:deploy-file \
-Dfile=libwebrtc.aar \
-DrepositoryId=github \
-Durl=https://maven.pkg.github.com/CASL0/libwebrtc-android-builder \
-DartifactId=webrtc-android \
-DgroupId=com.github.casl0 \
-Dversion=${{ env.REVISION }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REVISION: ${{ needs.build.outputs.revision }}