Update github-actions-demo.yml #2
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: Build and Push Docker Image | |
on: | |
push: | |
branches: | |
- main # 触发条件,可以根据需要修改 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Log in to ACR | |
uses: docker/login-action@v1 | |
with: | |
registry: <your-acr-endpoint> # 替换为你的 ACR 地址,例如: registry.cn-hangzhou.aliyuncs.com | |
username: ${{ secrets.ALIYUN_ACR_USERNAME }} # 使用 GitHub Secrets 存储阿里云用户名 | |
password: ${{ secrets.ALIYUN_ACR_PASSWORD }} # 使用 GitHub Secrets 存储阿里云密码 | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./deployment # 指定 docker-compose 文件所在的目录 | |
push: true | |
tags: <your-acr-endpoint>/<your-image-name>:${{ github.sha }} # 替换为你的镜像名称 | |
file: ./deployment/docker-compose.dev.yaml # 指定 Dockerfile 的路径,如果使用 docker-compose.yml 文件构建 |