From 63691b275b5ea00420a022c972910b46ac6efbb0 Mon Sep 17 00:00:00 2001 From: a-mabe Date: Sun, 29 Oct 2023 17:24:47 -0400 Subject: [PATCH] Download build artifacts --- .github/workflows/build_and_release.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_release.yaml b/.github/workflows/build_and_release.yaml index 468c17f3..4ce11707 100644 --- a/.github/workflows/build_and_release.yaml +++ b/.github/workflows/build_and_release.yaml @@ -146,7 +146,7 @@ jobs: run: flutter build ipa --release # Collect the file and upload as artifact - - name: collect ipa artifacts + - name: Upload IPA Artifact uses: actions/upload-artifact@v3 with: name: Release IPA @@ -165,6 +165,13 @@ jobs: permissions: contents: write steps: + + - name: Download artifacts + uses: actions/download-artifact@master + with: + name: builds + path: build/ + - name: Create Draft Release uses: ncipollo/release-action@v1.13.0 with: