Skip to content

Fix up invocation count on test steps test #20

Fix up invocation count on test steps test

Fix up invocation count on test steps test #20

Workflow file for this run

name: Release RubyGems
on:
push:
branches:
- release/*
jobs:
pre-release-check:
uses: cucumber/.github/.github/workflows/prerelease-checks.yml@main
test-ruby:
uses: ./.github/workflows/test.yml
publish-rubygem:
name: Publish Ruby Gem
needs: [pre-release-check, test-ruby]
runs-on: ubuntu-latest
environment: Release
steps:
- uses: actions/checkout@v4
- name: Publish ruby gem
uses: cucumber/[email protected]
with:
rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}
create-github-release:
name: Create GitHub Release and Git tag
needs: publish-rubygem
runs-on: ubuntu-latest
environment: Release
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: cucumber/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}