-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (26 loc) · 828 Bytes
/
main.yml
File metadata and controls
27 lines (26 loc) · 828 Bytes
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
on:
workflow_dispatch:
jobs:
job_id:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Tools cache
id: tool-caches
uses: actions/cache@v4
with:
path: /opt/hostedtoolcache/srcpush
key: srcpush-${{ runner.os }}-${{ github.run_id }}
restore-keys: |
srcpush-${{ runner.os }}-
- name: Setup Source Push CLI
uses: 'srcpush/srcpush-github-action@v1.0.0'
id: setup-srcpush-cli
with:
version: 'latest'
accessKey: ${{ secrets.SRCPUSH_ACCESS_KEY }}
- name: Release Android bundle
run: srcpush release-react myAmazingAndroidApp android -d Staging
- name: Release ios bundle
run: srcpush release-react myAmazingIOSApp ios -d Staging