From 7c22abf8b4781caeeee8617765f90d062904c7d3 Mon Sep 17 00:00:00 2001 From: patryk4815 Date: Fri, 11 Apr 2025 23:04:50 +0200 Subject: [PATCH] ci: add artifact upload step to release workflow (#2859) * ci: add artifact upload step to release workflow --- .github/workflows/releases.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 118fcb393..949690200 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -43,6 +43,12 @@ jobs: draft: true token: ${{ secrets.TOKEN }} + - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # @v4 + with: + name: ${{ matrix.os }}_${{ matrix.attribute }} + retention-days: 90 + path: ./dist-tarball/* + releases-linux: strategy: fail-fast: false @@ -78,6 +84,12 @@ jobs: draft: true token: ${{ secrets.TOKEN }} + - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # @v4 + with: + name: ${{ matrix.os }}_${{ matrix.attribute }} + retention-days: 90 + path: ./dist-tarball/* + releases-macos: strategy: fail-fast: false @@ -108,3 +120,9 @@ jobs: ./dist-tarball/* draft: true token: ${{ secrets.TOKEN }} + + - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # @v4 + with: + name: ${{ matrix.os }}_${{ matrix.attribute }} + retention-days: 90 + path: ./dist-tarball/*