From d21b1345bb15bd854d5587fa9bd7af7dd9be7e8d Mon Sep 17 00:00:00 2001 From: Bill Zimmerman Date: Wed, 20 Aug 2025 18:50:43 +0200 Subject: [PATCH] Update torrent.yml --- .github/workflows/torrent.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/torrent.yml b/.github/workflows/torrent.yml index ac5531ad..f2a689f2 100644 --- a/.github/workflows/torrent.yml +++ b/.github/workflows/torrent.yml @@ -1,7 +1,12 @@ name: Torrent Generation on: - workflow_dispatch + workflow_dispatch: + inputs: + ref: + description: 'Specify tag to run on' + required: true + default: 'master' jobs: torrent: @@ -9,8 +14,10 @@ jobs: permissions: contents: write steps: - - name: Checkout + - name: Checkout with ref uses: actions/checkout@v4 + with: + ref: ${{ github.event.inputs.ref }} - name: Create torrents uses: devopsx/action-torrent@v1