fix: Throw the correct result object for REST with nonstandard LRO (#… #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tag Generator Release | |
on: | |
push: | |
branches: [main] | |
paths: 'gapic-generator/**' | |
workflow_dispatch: | |
inputs: | |
args: | |
description: "Extra command line arguments." | |
required: false | |
jobs: | |
github-release: | |
if: ${{ github.repository == 'googleapis/gapic-generator-ruby' }} | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install Ruby 3.0 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.0" | |
- name: Install tools | |
run: "gem install --no-document toys" | |
- name: Execute | |
shell: bash | |
run: | | |
toys release tag-generators -v --remote=origin ${{ github.event.inputs.args }} |