parent
145429b07f
commit
f07d058c3c
@ -0,0 +1,49 @@ |
||||
name: Docker Image CI |
||||
|
||||
on: |
||||
push: |
||||
branches: [ "main" ] |
||||
paths: |
||||
- '**.go' |
||||
pull_request: |
||||
branches: [ "main" ] |
||||
paths: |
||||
- '**.go' |
||||
|
||||
env: |
||||
APP_NAME: allinone |
||||
DOCKERHUB_REPO: youshandefeiyang/allinone |
||||
|
||||
jobs: |
||||
docker: |
||||
runs-on: ubuntu-latest |
||||
steps: |
||||
- |
||||
name: Checkout |
||||
uses: actions/checkout@v2 |
||||
- |
||||
name: Set up QEMU |
||||
uses: docker/setup-qemu-action@v2 |
||||
- |
||||
name: Set up Docker Buildx |
||||
uses: docker/setup-buildx-action@v2 |
||||
- |
||||
name: Login to DockerHub |
||||
uses: docker/login-action@v2 |
||||
with: |
||||
username: ${{ secrets.DOCKERHUB_USERNAME }} |
||||
password: ${{ secrets.DOCKERHUB_TOKEN }} |
||||
- |
||||
name: Build and push |
||||
uses: docker/build-push-action@v2 |
||||
with: |
||||
context: . |
||||
platforms: | |
||||
linux/amd64 |
||||
linux/arm |
||||
linux/arm64 |
||||
push: true |
||||
build-args: | |
||||
APP_NAME=${{ env.APP_NAME }} |
||||
tags: | |
||||
${{ env.DOCKERHUB_REPO }}:latest |
||||
Loading…
Reference in new issue