Skip to content

Commit c895ff5

Browse files
committed
Fix CI
1 parent 1a22ef6 commit c895ff5

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -48,38 +48,38 @@ jobs:
4848
uses: docker/build-push-action@v6
4949
with:
5050
file: ./dockerfiles/vim
51-
tags:
52-
- ghcr.io/vim-denops/vim:latest
53-
- ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG }}
54-
- ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
55-
- ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
51+
tags: |
52+
ghcr.io/vim-denops/vim:latest
53+
ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG }}
54+
ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
55+
ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
5656
cache-from: |
5757
ghcr.io/vim-denops/vim/cache
5858
ghcr.io/vim-denops/vim
5959
cache-to: |
6060
type=registry,ref=ghcr.io/vim-denops/vim/cache,mode=max
6161
context: .
62-
platforms:
63-
- linux/amd64
64-
- linux/arm64
62+
platforms: |
63+
linux/amd64
64+
linux/arm64
6565
push: true
6666

6767
- name: Build and push Docker image (Neovim)
6868
uses: docker/build-push-action@v6
6969
with:
7070
file: ./dockerfiles/neovim
71-
tags:
72-
- ghcr.io/vim-denops/neovim:latest
73-
- ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG }}
74-
- ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
75-
- ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
71+
tags: |
72+
ghcr.io/vim-denops/neovim:latest
73+
ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG }}
74+
ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
75+
ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
7676
cache-from: |
7777
ghcr.io/vim-denops/neovim/cache
7878
ghcr.io/vim-denops/neovim
7979
cache-to: |
8080
type=registry,ref=ghcr.io/vim-denops/neovim/cache,mode=max
8181
context: .
82-
platforms:
83-
- linux/amd64
84-
- linux/arm64
82+
platforms: |
83+
linux/amd64
84+
linux/arm64
8585
push: true

0 commit comments

Comments
 (0)