Skip to content

Commit e34e200

Browse files
committed
Switch to build-push-action
1 parent c7fe5fe commit e34e200

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/default.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,16 @@ jobs:
2727
- name: Checkout
2828
uses: actions/checkout@v4
2929
- name: Pre-build devcontainer image for NEOVIM ${{ matrix.neovim-version }}
30-
uses: devcontainers/ci@v0.3
30+
uses: docker/build-push-action@v2
3131
with:
3232
imageName: ${{ env.IMAGE_NAME }}-${{ matrix.neovim-version }}
3333
cacheFrom: ${{ env.IMAGE_NAME }}-${{ matrix.neovim-version }}
34-
push: never
35-
env: NEOVIM_VERSION=${{ matrix.neovim-version }}
34+
push: false
35+
build-args: |
36+
NEOVIM_VERSION=${{ matrix.neovim-version }}
3637
- name: Run tests inside the docker image
37-
uses: devcontainers/ci@v0.3
38+
uses: docker/build-push-action@v2
3839
with:
3940
cacheFrom: ${{ env.IMAGE_NAME }}-${{ matrix.neovim-version }}
40-
push: never
41+
push: false
4142
runCmd: make test

0 commit comments

Comments
 (0)