diff --git a/.github/workflows/upload-build.yml b/.github/workflows/upload-build.yml new file mode 100644 index 0000000..eb1771b --- /dev/null +++ b/.github/workflows/upload-build.yml @@ -0,0 +1,37 @@ +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 }} + \ No newline at end of file