Skip to content

Commit

Permalink
- Add merge step
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaBear84 committed Dec 1, 2024
1 parent fe1c53a commit 49803c3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,20 @@ jobs:
path: |
OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip
# Merge native executables into the same directory
merge:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: artifacts
pattern: artifacts-*

release:
needs: build
needs: merge
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 49803c3

Please sign in to comment.