ci: add artifact upload step to release workflow (#2859)

* ci: add artifact upload step to release workflow
pull/2860/head
patryk4815 8 months ago committed by GitHub
parent 21dcc0a321
commit 7c22abf8b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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/*

Loading…
Cancel
Save