Make an official Release of Docker Images #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Make an official Release of Docker Images | |
on: | |
workflow_dispatch: | |
inputs: | |
upload_docker: | |
description: 'Upload TorchServe Docker Images?' | |
required: true | |
default: 'no' | |
upload_kfs: | |
description: 'Upload TorchServe-kfs Docker Images?' | |
required: true | |
default: 'no' | |
jobs: | |
official-release-docker: | |
runs-on: [self-hosted, ci-gpu] | |
environment: | |
name: official-release | |
steps: | |
- name: Clean up previous run | |
run: | | |
echo "Cleaning up previous run" | |
ls -la ./ | |
sudo rm -rf ./* || true | |
sudo rm -rf ./.??* || true | |
ls -la ./ | |
- name: Setup Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- name: Checkout TorchServe | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Login to Docker | |
env: | |
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | |
run: docker login --username pytorchbot --password "$DOCKER_PASSWORD" | |
- name: Build & Upload pytorch/torchserve Docker images | |
if: github.event.inputs.upload_docker == 'yes' | |
run: | | |
cd docker | |
docker buildx use multibuilder | |
python build_upload_release.py --cleanup | |
- name: Build & Upload pytorch/torchserve-kfs Docker images | |
if: github.event.inputs.upload_kfs == 'yes' | |
run: | | |
cd kubernetes/kserve | |
docker buildx use multibuilder | |
python build_upload_release.py --cleanup |