Skip to content

Commit

Permalink
First edit to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasas993 committed Nov 9, 2024
1 parent 98a6767 commit 389da66
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,21 @@ jobs:
run: |
sudo bash build-scripts/provision.sh
# Cache OpenSearch plugins
- name: Cache OpenSearch plugins
uses: actions/cache@v4
with:
path: ~/.m2/repository/org/opensearch
key: ${{ runner.os }}-opensearch-${{ hashFiles('plugins/**/*.xml', 'plugins/**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-opensearch-
# Add the script to install plugins here
- name: Run script to install OpenSearch plugins
run: |
chmod +x ./path/to/your/script.sh # Cambia esto por la ruta real de tu script
./path/to/your/script.sh
- name: Run `baptizer.sh` (min)
run: |
name=$(bash build-scripts/baptizer.sh -m \
Expand Down

0 comments on commit 389da66

Please sign in to comment.