fix cicd #8
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: Custom Docker Image Example | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.cn-hangzhou.aliyuncs.com/dango/image_dx:latest # 指定您的自定义 Docker 镜像及其标签 | |
options: --platform linux/amd64 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run a custom command in the custom image | |
run: | | |
echo "Hello from the custom Docker image!" | |
env | |
ls -a |