Skip to content

Commit

Permalink
Test update OpenSearch to 2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
isboston committed Dec 25, 2024
1 parent 7c4d34f commit 097283e
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/build_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ on:
- 'release/**'
- 'hotfix/**'
- 'develop'
- 'feature/update-opensearch'
paths:
- 'install/common/**'
- 'install/deb/**'
- 'install/rpm/**'
- '.github/workflows/build_packages.yml'
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -43,9 +41,9 @@ env:
PRODUCT_LOW: "docspace"
BUILD_NUMBER: ${{ github.run_number }}
PACKAGE_DIRECTORY: "/home/runner/work/${{ github.event.repository.name }}/${{ github.event.repository.name }}"
BRANCH_BUILDTOOLS: ${{ github.event.inputs.branch-buildtools != '' && github.event.inputs.branch-buildtools || github.ref_name || 'develop' }}
BRANCH_CLIENT: ${{ github.event.inputs.branch-client != '' && github.event.inputs.branch-client || github.ref_name || 'develop' }}
BRANCH_SERVER: ${{ github.event.inputs.branch-server != '' && github.event.inputs.branch-server || github.ref_name || 'develop' }}
BRANCH_BUILDTOOLS: 'feature/update-opensearch'
BRANCH_CLIENT: 'feature/update-opensearch'
BRANCH_SERVER: 'feature/update-opensearch'

jobs:
prepare:
Expand All @@ -61,9 +59,7 @@ jobs:
- name: Determine changed
id: changes
run: |
git fetch --no-tags --prune --depth=2
CHANGED_FILES=$(git diff --name-only HEAD~1 HEAD)
echo "build_all=$(echo "$CHANGED_FILES" | grep -qE '^.github/workflows/build_packages.yml' && echo true || echo false)" >> $GITHUB_OUTPUT
echo "build_all=$(git diff --name-only HEAD~1 HEAD | grep -qE 'build_packages.yml' && echo true)" >> $GITHUB_OUTPUT
- name: Set matrix
id: set-matrix
run: |
Expand Down

0 comments on commit 097283e

Please sign in to comment.