From c0fb8d24537f1c36921aea5537ca4052cff1e0bb Mon Sep 17 00:00:00 2001 From: Gianmarco Fraccaroli Date: Wed, 18 Oct 2023 10:30:35 +0200 Subject: [PATCH] improve release ci --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94c1d5ae8e..2c147875ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,11 @@ on: tags: - "v[0-9]+.[0-9]+.[0-9]+" - "v[0-9]+.[0-9]+.[0-9]+-[a-z]+" + workflow_dispatch: + inputs: + tag: + description: "The tag to release." + required: true permissions: id-token: write @@ -38,6 +43,9 @@ jobs: with: fetch-depth: 0 - run: git fetch --tags --force origin # WA: https://github.com/actions/checkout/issues/882 + - name: Switch to tag if specified + if: "${{ github.event.inputs.tag != '' }}" + run: git checkout ${{ github.event.inputs.tag }} - name: Install Protoc uses: arduino/setup-protoc@v1 with: