Skip to content

Commit 2298a52

Browse files
Only mobile releases
1 parent e633077 commit 2298a52

File tree

3 files changed

+39
-80
lines changed

3 files changed

+39
-80
lines changed

.github/workflows/androidrelease.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Android Release StreamrProxyClient
2+
on:
3+
release:
4+
types: [published]
5+
env:
6+
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
7+
jobs:
8+
build-android:
9+
runs-on: macos-15
10+
env:
11+
ARCHFLAGS: --android
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.event.pull_request.head.ref }}
16+
fetch-depth: 0
17+
18+
- name: Install Dependencies
19+
uses: ./.github/workflows/reusable/cached-install
20+

.github/workflows/iosrelease.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: iOS Release StreamrProxyClient
2+
on:
3+
release:
4+
types: [published]
5+
env:
6+
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
7+
jobs:
8+
build-android:
9+
runs-on: macos-15
10+
env:
11+
ARCHFLAGS: --ios
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
ref: ${{ github.event.pull_request.head.ref }}
16+
fetch-depth: 0
17+
18+
- name: Install Dependencies
19+
uses: ./.github/workflows/reusable/cached-install

.github/workflows/release.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)