Skip to content

Commit

Permalink
Merge pull request #11 from hiddenshadow21/RavenDB-22626
Browse files Browse the repository at this point in the history
RavenDB-22626 Add option to build deb packages only
  • Loading branch information
gregolsky authored Jul 19, 2024
2 parents 061a897 + d2a894b commit e847124
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ on:
required: false
type: string
default: ravendb/ravendb
deb_only:
description: 'Build deb packages only'
required: false
type: boolean
default: false
dry_run:
description: 'Dry run'
required: false
Expand Down Expand Up @@ -233,7 +238,7 @@ jobs:
fail-fast: false
runs-on: ubuntu-latest
needs: debPackage
if: always()
if: always() && inputs.deb_only == false
steps:
- name: Get ravendb majorminor version & set repo
run: |
Expand Down Expand Up @@ -306,6 +311,7 @@ jobs:
windowsDockerImageBuilder:
name: Matrix Creator for Windows
runs-on: ubuntu-latest
if: inputs.deb_only == false
outputs:
matrix: ${{ steps.create.outputs.matrix }}
steps:
Expand All @@ -327,6 +333,7 @@ jobs:
data: ${{ fromJson(needs.windowsDockerImageBuilder.outputs.matrix) }}
fail-fast: false
runs-on: windows-${{ matrix.data.os }}
if: inputs.deb_only == false
steps:
- name: Get ravendb majorminor version & set repo
shell: bash
Expand Down Expand Up @@ -370,6 +377,7 @@ jobs:
needs: [linux, windows]
name: Create docker multiarch manifest
runs-on: ubuntu-latest
if: inputs.deb_only == false
steps:
- name: Get ravendb majorminor version & set repo
shell: bash
Expand Down

0 comments on commit e847124

Please sign in to comment.