Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kqzh committed Mar 29, 2024
1 parent dd779ca commit 7ddfc60
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
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
Expand All @@ -31,8 +36,8 @@ jobs:
registry: docker.io
- name: Build and Push Docker images
run: |
# export GOPATH=${GITHUB_WORKSPACE}/go
# export PATH=$PATH:$GOPATH/bin
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 7ddfc60

Please sign in to comment.