Skip to content

Commit

Permalink
actions: disable image-builder workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
missinglink committed Nov 30, 2023
1 parent 6430b94 commit 4aa5e98
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions .github/workflows/elasticsearch-image-builder.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
name: Build Docker Images
on:
push:
paths:
- "images/elasticsearch/**"
- ".github/workflows/**"
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
elastic-version:
- "7.17.15"
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 100
- name: "Build elasticsearch@${{ matrix.elastic-version }}"
run: |
cd images/elasticsearch/${{ matrix.elastic-version }}
curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -
# name: Build Docker Images
# on:
# push:
# paths:
# - "images/elasticsearch/**"
# - ".github/workflows/**"
# jobs:
# build:
# if: github.ref == 'refs/heads/master' && needs.unit-tests.result == 'success'
# runs-on: ubuntu-20.04
# strategy:
# matrix:
# elastic-version:
# - "7.17.15"
# env:
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 100
# - name: "Build elasticsearch@${{ matrix.elastic-version }}"
# run: |
# cd images/elasticsearch/${{ matrix.elastic-version }}
# curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -

0 comments on commit 4aa5e98

Please sign in to comment.