From 75e24e000bb66c740c17c5912bad181cb7e221a7 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 22 Oct 2023 00:45:54 +0300 Subject: [PATCH] CI: build and publish exposed docker package --- .github/workflows/docker.yml | 58 ++++++++++++++++++++++++++++++++++++ flake/packages.nix | 4 +-- 2 files changed, 60 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/docker.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml new file mode 100644 index 0000000..06c3944 --- /dev/null +++ b/.github/workflows/docker.yml @@ -0,0 +1,58 @@ +name: "Publish Docker Image" +on: + workflow_dispatch: + pull_request: + branches: + - main + tags: + - "v*" + push: + branches: + - main + tags: + - "v*" + +jobs: + build-docker-image: + name: "Build Docker Image" + runs-on: ubuntu-latest + + permissions: + contents: read + packages: write + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@main + - name: Magic Nix Cache + uses: DeterminateSystems/magic-nix-cache-action@main + + - name: Build Docker Image + run: nix build .#docker-nix --print-build-logs + + - name: Load & Tag Built Docker Image + run: | + docker load -i result && + docker tag neovim-flake:latest notashelf/neovim-flake:latest + + - name: Log into DockerHub + uses: docker/login-action@master + with: + username: notashelf + password: ${{ secrets.DOCKER_ACCESS_TOKEN }} + + - name: Push to DockerHub + run: docker push notashelf/neovim-flake:latest + + - name: Log into ghcr + uses: docker/login-action@master + with: + registry: "ghcr.io" + username: "${{ github.actor }}" + password: "${{ secrets.GITHUB_TOKEN }}" + + - name: Publish Docker Image (Github Packages) + run: docker push notashelf/neovim-flake:latest diff --git a/flake/packages.nix b/flake/packages.nix index cb46e74..bcf11e9 100644 --- a/flake/packages.nix +++ b/flake/packages.nix @@ -30,13 +30,13 @@ maximal = config.legacyPackages.neovim-maximal; default = config.legacyPackages.neovim-nix; - # Publisged docker images + # Published docker images docker-nix = let inherit (pkgs) bash gitFull buildEnv dockerTools; inherit (config.legacyPackages) neovim-nix; in dockerTools.buildImage { - name = "neovim-flake-nix"; + name = "neovim-flake"; tag = "latest"; copyToRoot = buildEnv {