From 6b569195125bf9182928c2e7ac3b284f74fc0c09 Mon Sep 17 00:00:00 2001 From: Jonathan Romano Date: Fri, 6 Sep 2024 13:50:36 -0400 Subject: [PATCH] Start upload build workflow (just downloading artifacts for now) --- .github/workflows/upload-build.yml | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/upload-build.yml 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