From 387b1ef3be3ea23e81675154bd33452fedd8d784 Mon Sep 17 00:00:00 2001 From: iofq Date: Sat, 27 May 2023 05:39:30 -0500 Subject: [PATCH] update CI --- .github/workflows/main.yml | 6 ++---- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78d9a6e..ef05c7f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,15 +23,13 @@ jobs: push: true tags: ghcr.io/iofq/nvim:latest - - name: Extract full .tar.gz from container - uses: shrink/actions-docker-extract@v1 + - uses: shrink/actions-docker-extract@v1 id: extract with: image: ghcr.io/iofq/nvim:latest path: /out/neovim-x86_64-linux.AppImage - - name: Extract minimal .tar.gz from container - uses: shrink/actions-docker-extract@v1 + - uses: shrink/actions-docker-extract@v1 id: extract-minimal with: image: ghcr.io/iofq/nvim:latest diff --git a/Dockerfile b/Dockerfile index 14379fd..1cb3e60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,6 @@ RUN mkdir -p /out && \ --extra-experimental-features flakes .#minimal && \ mv $(realpath nvim-minimal.AppImage) /out/neovim-x86_64-linux-minimal.AppImage -FROM scratch +FROM busybox:alpine WORKDIR /out COPY --from=build /out /out