From 054b8944cc53028a8376e40ac689234fccaed86d Mon Sep 17 00:00:00 2001 From: Josh Willox Date: Mon, 10 Jun 2024 15:56:50 +1000 Subject: [PATCH] ci: fix missing target in publish workflow --- .github/workflows/publish.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 01ca718..b280492 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -3,6 +3,10 @@ name: "Publish" on: release: types: [published] + workflow_dispatch: + +env: + TARGET: rclone_backup jobs: publish: @@ -28,6 +32,6 @@ jobs: with: args: | --all \ - --target rclone_backup \ + --target ${{ env.TARGET }} \ --image ${{ steps.information.outputs.image }} \ --docker-hub ${{ steps.information.outputs.repository }}