Skip to content

Commit

Permalink
feat: add docker ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kqzh committed Mar 29, 2024
1 parent 27d7572 commit 4b92ec6
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: docker

on:
push:
branches:
- master

jobs:
docker:
name: build docker image
runs-on: ubuntu-latest
steps:
- name: Set up go environment
uses: actions/setup-go@v2
with:
go-version: 1.19
id: go
- name: Check out code
uses: actions/checkout@v3
with:
path: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}
fetch-depth: 2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log into registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: docker.io
- name: Build and Push Docker images
run: |
export GOPATH=${GITHUB_WORKSPACE}/go
export PATH=$PATH:$GOPATH/bin
export IMAGE_TAG=latest
make image-multiarch
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}

0 comments on commit 4b92ec6

Please sign in to comment.