1.0.8 #8
Workflow file for this run
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: Deploy to DockerHub | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
env: | |
IMAGE_NAME: language_model_gateway | |
REPOSITORY_URL: icanbwell | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - name: AWS Credentials | |
# uses: aws-actions/configure-aws-credentials@v4 | |
# with: | |
# aws-region: us-east-1 | |
# | |
# - name: Login to Amazon ECR | |
# id: login-ecr | |
# uses: aws-actions/amazon-ecr-login@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Install QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Create builder | |
run: | | |
docker buildx create --use | |
- name: Inspect builder | |
run: | | |
docker buildx inspect --bootstrap | |
- name: Build, tag, and push image to Amazon ECR | |
env: | |
TAG: ${{ github.event.release.tag_name }} | |
run: | | |
docker buildx build \ | |
--platform linux/amd64,linux/arm64 \ | |
-t $REPOSITORY_URL/$IMAGE_NAME:$TAG \ | |
-t $REPOSITORY_URL/$IMAGE_NAME:latest \ | |
--push \ | |
-f Dockerfile . |