소스 검색

feat 0.2.2

Yeuoly 1 년 전
부모
커밋
66bc61855e
1개의 변경된 파일1개의 추가작업 그리고 7개의 파일을 삭제
  1. 1 7
      .github/workflows/build-universal.yml

+ 1 - 7
.github/workflows/build-universal.yml

@@ -56,13 +56,7 @@ jobs:
             type=raw,value=${{ github.ref_name }},enable=${{ startsWith(github.ref, 'refs/tags/') }}
 
       - name: Build Universal Docker Images
-        run: |
-          tags=(${{
-            steps.meta.outputs.tags | fromJson
-          }})
-          for tag in "${tags[@]}"; do
-            docker manifest create "${tag}-${{ inputs.arch }}" "${tag}-amd64" "${tag}-arm64"
-          done
+        run: tags=(${{ steps.meta.outputs.tags | fromJson }}) for tag in "${tags[@]}"; do docker manifest create "${tag}-${{ inputs.arch }}" "${tag}-amd64" "${tag}-arm64" done
       
       - name: Push Universal Docker Image
         run: |