From 02809015b21353bc5a85e27c37a2c3bb4134f4a6 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Fri, 29 Nov 2024 12:57:01 +0100 Subject: [PATCH] fix secret format Signed-off-by: Michael Grote --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd64b2f..8836493 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,7 +58,7 @@ RUN ansible-galaxy install -r requirements.yaml \ # dotfiles, see: https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh # hadolint ignore=DL3001 RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim \ - && git clone https://"$GITUSER":"$GITUSERPW"@git.mgrote.net/mg/dotfiles ~/dotfiles \ + && git clone https://${{ secrets.GITUSER }}:${{ secrets.GITUSERPW }}@git.mgrote.net/mg/dotfiles ~/dotfiles \ && ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf \ && ln -s ~/dotfiles/.gitconfig ~/.gitconfig \ && ln -s ~/dotfiles/.vimrc ~/.vimrc \