Skip to content

Commit

Permalink
ci: Merge artifacts for release job
Browse files Browse the repository at this point in the history
  • Loading branch information
attakei committed Mar 10, 2024
1 parent efd6a67 commit 1f90f5e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,15 @@ jobs:
directory: 'dist'
path: '${{ env.release_name }}'
filename: '${{ env.release_name }}.zip'
- run: 'ls -l dist'
- uses: actions/upload-artifact@v4
with:
name: 'release-${{ env.release_name }}'
path: 'dist/${{ env.release_name }}.zip'
release:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/download-artifact@v4
with:
path: 'dist'
- run: ls -lR dist

0 comments on commit 1f90f5e

Please sign in to comment.