From a00409b6b9520a842308a6f945b8abece0ab51dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Thu, 14 Oct 2021 11:41:35 +0200 Subject: Fix github action --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 62cea6d..cd14344 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -33,8 +33,8 @@ jobs: tags: ${{ env.TEST_TAG }} - name: Test run: | - docker run -it --rm ${{ env.TEST_TAG }} 'nix-channel --list' - docker run -it --rm ${{ env.TEST_TAG }} 'nix-env -iA nixpkgs.hello && test "$(hello)" = "Hello, world!"' + docker run --rm ${{ env.TEST_TAG }} 'nix-channel --list' + docker run --rm ${{ env.TEST_TAG }} 'nix-env -iA nixpkgs.hello && test "$(hello)" = "Hello, world!"' - name: Get the version if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') id: get_version -- cgit v1.2.3