From f85c95afa47876b0b8d075b6c38d0bd29d631c97 Mon Sep 17 00:00:00 2001 From: Kyle Machulis Date: Fri, 20 Oct 2023 17:27:05 -0700 Subject: [PATCH] build: Add linux variant to CI artifact --- .github/workflows/central.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/central.yml b/.github/workflows/central.yml index ce02451..9bcc2a9 100644 --- a/.github/workflows/central.yml +++ b/.github/workflows/central.yml @@ -86,12 +86,12 @@ jobs: - run: flutter build linux --release --dart-define="SENTRY_DSN=${{ secrets.SENTRY_DSN }}" name: flutter build - name: Zip Release - run: zip -r intiface-central-linux-x64.zip build/linux/x64/release/bundle + run: zip -r intiface-central-linux-${{ matrix.os }}-x64.zip build/linux/x64/release/bundle - name: Archive production artifacts uses: actions/upload-artifact@v3 with: - name: linux-zip - path: ./intiface-central-linux-x64.zip + name: linux-${{ matrix.os }}-zip + path: ./intiface-central-linux-${{ matrix.os }}-x64.zip # macos: # runs-on: macos-latest # steps: