Docker publish #641
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: Docker publish | |
on: | |
schedule: | |
- cron: '0 15 * * *' | |
workflow_dispatch: | |
inputs: | |
mode: | |
description: 'release/nightly, default is nightly' | |
required: true | |
default: 'nightly' | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
publish: | |
if: github.repository == 'deepjavalibrary/djl' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Docker buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::425969335547:role/djl-ci-publish-role | |
aws-region: us-east-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
with: | |
registries: "314815235551" | |
- name: Login to Docker | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Set variables | |
run: | | |
DJL_VERSION=$(awk -F '=' '/djl/ {gsub(/ ?"/, "", $2); print $2}' gradle/libs.versions.toml) | |
echo "DJL_VERSION=$DJL_VERSION" >> $GITHUB_ENV | |
- name: Build djl_spark wheel | |
working-directory: extensions/spark/setup/ | |
run: ./setup.py bdist_wheel | |
- name: Build and push nightly docker image | |
if: ${{ github.event.inputs.mode == '' || github.event.inputs.mode == 'nightly' }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
file: docker/spark/Dockerfile | |
tags: deepjavalibrary/djl-spark:cpu-nightly | |
- name: Build and push release docker image | |
if: ${{ github.event.inputs.mode == 'release' }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: docker/spark/Dockerfile | |
build-args: DJL_VERSION=${DJL_VERSION} | |
tags: deepjavalibrary/djl-spark:${{ env.DJL_VERSION }}-cpu |