Skip to content

Commit

Permalink
fix pipeline (#5389)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalSkolasinski committed Feb 29, 2024
1 parent cfe54e2 commit 6a45b2b
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -43,7 +42,6 @@ jobs:
- name: Build and push
working-directory: ./operator/
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push
Expand All @@ -60,7 +58,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -71,7 +68,6 @@ jobs:
- name: Build and push
working-directory: ./executor/
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push
Expand All @@ -87,7 +83,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -98,7 +93,6 @@ jobs:
- name: Build and push (Rclone Storage Initializer)
working-directory: ./components/rclone-storage-initializer
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push
Expand All @@ -117,7 +111,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand All @@ -128,20 +121,18 @@ jobs:
- name: Build and push (Conda Base Image)
working-directory: ./wrappers/s2i/python
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build-conda-base docker-push-conda-base
- name: Build and push (Base Wrapper)
working-directory: ./wrappers/s2i/python
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push PYTHON_VERSION=3.8.10
make docker-tag-base-python docker-push-base-python PYTHON_VERSION=3.8.10
docker save -o /tmp/base-wrapper.tar ${DOCKER_REGISTRY}/seldon-core-s2i-python38:${VERSION}
docker save -o /tmp/base-wrapper.tar seldonio/seldon-core-s2i-python38:${VERSION}
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -170,7 +161,6 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ${{ secrets.DOCKER_REGISTRY }}

- name: Set default docker tag for builds from master
id: docker-tag
Expand Down Expand Up @@ -198,7 +188,6 @@ jobs:
- name: Build and push (Prepackaged Server Image)
working-directory: ./${{ matrix.server }}/
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}
VERSION: ${{ steps.docker-tag.outputs.value }}
run: |
make docker-build docker-push

0 comments on commit 6a45b2b

Please sign in to comment.