Yeuoly 1 rok temu
rodzic
commit
66bc61855e
1 zmienionych plików z 1 dodań i 7 usunięć
  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: |