Merge pull request #294 from helmfile/fix_miss_tag_in_docker_build

fix tag miss in docker build
This commit is contained in:
yxxhero 2022-08-16 09:41:33 +08:00 committed by GitHub
commit e44a915d40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
@ -62,6 +64,7 @@ jobs:
- name: Build / Push
uses: docker/build-push-action@v3
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: linux/amd64,linux/arm64
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}