From eed079f1d58fa2a4ee917dfec66f8d387ec50b65 Mon Sep 17 00:00:00 2001 From: JP Hastings-Spital Date: Wed, 1 May 2024 18:22:54 +0100 Subject: [PATCH] Fix restic installer --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 11c602be..7013c2bb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -49,7 +49,7 @@ jobs: run: | wget -q -O ${{ runner.temp }}/restic.bz2 https://github.com/restic/restic/releases/download/v${RESTIC_VERSION}/restic_${RESTIC_VERSION}_linux_amd64.bz2 \ && bunzip2 ${{ runner.temp }}/restic.bz2 \ - && mv restic /usr/local/bin/restic + && mv ${{ runner.temp }}/restic /usr/local/bin/restic - name: Checkout uses: actions/checkout@v3 with: