Skip to content

Commit

Permalink
Fix GitHub Actions release artifact handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbrink committed Jan 29, 2025
1 parent b14e409 commit fd57f64
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,18 @@ jobs:

- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts

- name: List artifacts
run: ls -R artifacts/

- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: essex-*/*
files: |
artifacts/essex-*/*.tar.gz
artifacts/essex-*/*.zip
generate_release_notes: true
draft: false
prerelease: false

0 comments on commit fd57f64

Please sign in to comment.