From 30c3ff15d5565a55bfb4d802a660dc106d58abc6 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Thu, 10 Apr 2025 18:22:40 +1000 Subject: [PATCH] ci: upload Apple artifacts to workflow (#8740) Makes it easier to test PRs prior to merging. --- .github/workflows/_swift.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/_swift.yml b/.github/workflows/_swift.yml index c599a27f9..3316b1be4 100644 --- a/.github/workflows/_swift.yml +++ b/.github/workflows/_swift.yml @@ -103,6 +103,12 @@ jobs: API_KEY_ID: "${{ secrets.APPLE_APP_STORE_CONNECT_API_KEY_ID }}" API_KEY: "${{ secrets.APPLE_APP_STORE_CONNECT_API_KEY }}" TEMP_DIR: "${{ runner.temp }}" + - name: Upload package artifacts + uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + with: + name: ${{ matrix.artifact-file }} + path: | + "${{ runner.temp }}/${{ matrix.artifact-file }}" - run: ${{ matrix.upload-script }} if: "${{ github.event_name == 'workflow_dispatch' }}" env: