Sha256: 67df5b0495842b7fce969edc57149d4489009e0f0856d7ef16ed1c16b72429f7

Contents?: true

Size: 1.13 KB

Versions: 5

Compression:

Stored size: 1.13 KB

Contents

name: Release-Please
on:
  workflow_dispatch:
    inputs:
      gem:
        description: "Name of single gem to release. Leave blank to check all gems."
        required: false
      args:
        description: "Extra command line arguments."
        required: false

jobs:
  release-please:
    if: ${{ github.repository == 'googleapis/ruby-spanner-activerecord' }}
    runs-on: ubuntu-latest
    env:
      GITHUB_TOKEN: ${{ secrets.YOSHI_CODE_BOT_TOKEN }}
      RELEASE_PLEASE_DISABLE: ${{ secrets.RELEASE_PLEASE_DISABLE }}
    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 NodeJS 16.x
        uses: actions/setup-node@v4
        with:
          node-version: "16.x"
      - name: Install tools
        run: "gem install --no-document toys"
      - name: execute
        run: |
          toys release manifest -v \
            --fork --skip-labeling \
            --github-event-name=${{ github.event_name }} \
            ${{ github.event.inputs.args }} \
            -- ${{ github.event.inputs.gem }}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
activerecord-spanner-adapter-1.6.2 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.6.1 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.6.0 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.5.1 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.5.0 .github/workflows/release-please.yml