Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Jul 27, 2024
1 parent 1a22ef6 commit c895ff5
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,38 +48,38 @@ jobs:
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/vim
tags:
- ghcr.io/vim-denops/vim:latest
- ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG }}
- ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
- ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
tags: |
ghcr.io/vim-denops/vim:latest
ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG }}
ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
ghcr.io/vim-denops/vim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
cache-from: |
ghcr.io/vim-denops/vim/cache
ghcr.io/vim-denops/vim
cache-to: |
type=registry,ref=ghcr.io/vim-denops/vim/cache,mode=max
context: .
platforms:
- linux/amd64
- linux/arm64
platforms: |
linux/amd64
linux/arm64
push: true

- name: Build and push Docker image (Neovim)
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/neovim
tags:
- ghcr.io/vim-denops/neovim:latest
- ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG }}
- ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
- ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
tags: |
ghcr.io/vim-denops/neovim:latest
ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG }}
ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MINOR }}
ghcr.io/vim-denops/neovim:${{ steps.vars.outputs.DOCKER_TAG_MAJOR }}
cache-from: |
ghcr.io/vim-denops/neovim/cache
ghcr.io/vim-denops/neovim
cache-to: |
type=registry,ref=ghcr.io/vim-denops/neovim/cache,mode=max
context: .
platforms:
- linux/amd64
- linux/arm64
platforms: |
linux/amd64
linux/arm64
push: true

0 comments on commit c895ff5

Please sign in to comment.