From feed48538c32be2a1ce71529a952e16d9c9f9756 Mon Sep 17 00:00:00 2001 From: Julian Stiller Date: Thu, 6 Feb 2025 16:25:52 +0100 Subject: [PATCH] Actions: try podman for publishing --- .forgejo/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 82bf272..52d7d8f 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: pre-requisites run: | - nix-env -iA nixpkgs.docker nixpkgs.nodejs_20 nixpkgs.gnused nixpkgs.coreutils && mkdir -p ~/.config/nix && echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf + nix-env -iA nixpkgs.docker nixpkgs.podman nixpkgs.nodejs_20 nixpkgs.gnused nixpkgs.coreutils && mkdir -p ~/.config/nix && echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf - name: checkout uses: actions/checkout@v4 with: @@ -33,4 +33,4 @@ jobs: out-link: ${{ steps.pkgs.outputs.pkgs-name }} - name: load image into docker run: | - docker load < ${{ steps.pkgs.outputs.pkgs-name }} + podman load < ${{ steps.pkgs.outputs.pkgs-name }}