From 88d206b885b7a0748daaf8558fa1a750961375ab Mon Sep 17 00:00:00 2001 From: Kisaragi <48310258+KisaragiEffective@users.noreply.github.com> Date: Thu, 14 Nov 2024 07:38:13 +0900 Subject: [PATCH] cd: change targeting tag if manually invoked --- .github/workflows/zip-vpm.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zip-vpm.yml b/.github/workflows/zip-vpm.yml index 589d090..c402acf 100644 --- a/.github/workflows/zip-vpm.yml +++ b/.github/workflows/zip-vpm.yml @@ -46,7 +46,7 @@ jobs: shell: pwsh - name: Upload files run: | - gh release upload ${{github.event.release.tag_name}} vpm-src.zip - gh release upload ${{github.event.release.tag_name}} vpm-src.zip.sha256sum + gh release upload ${{ github.event.release.tag_name || github.input.tag }} vpm-src.zip + gh release upload ${{ github.event.release.tag_name || github.input.tag }} vpm-src.zip.sha256sum env: GH_TOKEN: ${{ github.token }}