Skip to content

Commit 7e5b5c8

Browse files
authored
Merge pull request #36 from firebase/feature/monoupdate
Change the APPLE flag to FIREBASE_IOS_BUILD
2 parents 54b1c78 + e1c91e7 commit 7e5b5c8

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/package.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Workflow to handle packaging the Unity SDK
2+
name: Package SDKs
3+
4+
on:
5+
workflow_dispatch:
6+
inputs:
7+
operating_systems:
8+
description: 'CSV of VMs to run on'
9+
default: 'macos-latest'
10+
required: true
11+
12+
jobs:
13+
package_sdks:
14+
name: package-${{matrix.os}}
15+
runs-on: ${{matrix.os}}
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
os: [ubuntu-latest]
20+
include:
21+
- os: ubuntu-latest
22+
package_dir: output
23+
steps:
24+
- name: Setup Python
25+
uses: actions/setup-python@v2
26+
with:
27+
python-version: 3.7
28+
29+
- name: Fetch Artifacts
30+
uses: dawidd6/action-download-artifact@v2
31+
with:
32+
name: 'linux_unity.zip'
33+
workflow: 'sdk_build.yml'
34+
run_id: ${{ github.event.inputs.downloadPreviousRun }}
35+

0 commit comments

Comments
 (0)