🐛 Bug: Fix the bug where Azure is not compatible with function role. #225
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 Build and Publish Docker Image | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- Dockerfile.build | |
- requirements.txt | |
- setup.sh | |
- .github/workflows/main.yml | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1.6.0 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3.0.0 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2.7.0 | |
with: | |
context: . | |
file: Dockerfile.build | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: yym68686/chatgpt:1.0 |