Skip to content

Start upload build workflow (just downloading artifacts for now) #1

Start upload build workflow (just downloading artifacts for now)

Start upload build workflow (just downloading artifacts for now) #1

Workflow file for this run

name: 'Upload Build'
on:
workflow_dispatch:
inputs:
run-id:
description: 'GitHub Actions run ID to use artifacts from'
required: true
type: number
push:
branches: [ci]
permissions:
actions: read
jobs:
upload-ios:
runs-on: macos-latest
steps:
- uses: actions/download-artifact@v4
with:
name: release-ios
github-token: $GITHUB_TOKEN
run-id: ${{ inputs.run-id }}
upload-android:
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: release-android
github-token: $GITHUB_TOKEN
run-id: ${{ inputs.run-id }}