Skip to content

Commit

Permalink
improve release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Oct 18, 2023
1 parent 82d2db4 commit c0fb8d2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit c0fb8d2

Please sign in to comment.