Sha256: 8cc0266dca1032294032458f8089b4972d4eb8e936cbd003cc58eb422e31703c

Contents?: true

Size: 609 Bytes

Versions: 1

Compression:

Stored size: 609 Bytes

Contents

name: release

on:
  workflow_dispatch:
    inputs:
      next_version:
        description: |
          Next release version. Possible values: x.y.z, major, minor, patch (or pre|rc|etc).
          Also, you can pass 'skip' to skip 'git tag' and do 'gem push' for the current version
        required: true
        default: 'skip'
  repository_dispatch:
    types: [ do-release ]

jobs:
  release:
    uses: fontist/support/.github/workflows/release.yml@main
    with:
      next_version: ${{ github.event.inputs.next_version }}
    secrets:
      rubygems-api-key: ${{ secrets.FONTIST_CI_RUBYGEMS_API_KEY }}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fontist-1.21.2 .github/workflows/release.yml