Skip to content

Commit

Permalink
ci: merge all produced artifacts into a single artifact for ease of d…
Browse files Browse the repository at this point in the history
…ownloading
  • Loading branch information
stumpylog authored and dvarrazzo committed May 30, 2024
1 parent 59f5ad9 commit 21f16c7
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/packages-bin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,3 +245,17 @@ jobs:


# }}}

merge:
runs-on: ubuntu-latest
needs:
- linux
- macos-14
- macos-12
- windows
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: psycopg-binary-artifact
delete-merged: true
11 changes: 11 additions & 0 deletions .github/workflows/packages-pool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,14 @@ jobs:
--health-interval 10s
--health-timeout 5s
--health-retries 5
merge:
runs-on: ubuntu-latest
needs:
- sdist
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: psycopg-pool-artifact
delete-merged: true
10 changes: 10 additions & 0 deletions .github/workflows/packages-src.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,13 @@ jobs:
--health-interval 10s
--health-timeout 5s
--health-retries 5
merge:
runs-on: ubuntu-latest
needs:
- sdist
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: psycopg-src-artifact
delete-merged: true

0 comments on commit 21f16c7

Please sign in to comment.