Sha256: 148872339d79a592a0223f5f746e974b2b3867f835e9b7aefcf3ed5731e2bafc

Contents?: true

Size: 1.17 KB

Versions: 7

Compression:

Stored size: 1.17 KB

Contents

name: Release-Please
on:
  schedule:
    - cron: '57 10 * * *'
  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@v3
      - name: Install Ruby 3.0
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: "3.0"
      - name: Install NodeJS 16.x
        uses: actions/setup-node@v3
        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

7 entries across 7 versions & 1 rubygems

Version Path
activerecord-spanner-adapter-1.4.1 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.4.0 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.3.1 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.2.2 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.2.1 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.2.0 .github/workflows/release-please.yml
activerecord-spanner-adapter-1.1.0 .github/workflows/release-please.yml