From 44b9e623cc0e4ced286a27410b0f0a05efbd29c2 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Fri, 23 Dec 2022 18:43:55 +0000 Subject: [PATCH] Remove newline before access-tokens (#136) --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5852b6d..e7c132a 100644 --- a/action.yml +++ b/action.yml @@ -117,7 +117,7 @@ runs: if [ -n "${{ inputs.extra-conf }}" ]; then if [ -n "${{ inputs.github-token }}" ]; then - export NIX_INSTALLER_EXTRA_CONF="${{ inputs.extra-conf }}\naccess-tokens = github.com=${{ inputs.github-token }}" + export NIX_INSTALLER_EXTRA_CONF="${{ inputs.extra-conf }}access-tokens = github.com=${{ inputs.github-token }}" else export NIX_INSTALLER_EXTRA_CONF="${{ inputs.extra-conf }}" fi