Sha256: 66e815d94278cd66bb67b37d015b51a98db592f22e0fdcc0c4a486a20f000caa

Contents?: true

Size: 911 Bytes

Versions: 6

Compression:

Stored size: 911 Bytes

Contents

name: Release

on:
  push:
    branches:
      - main

permissions:
  contents: write
  pull-requests: write

jobs:
  release-please:
    runs-on: ubuntu-latest
    steps:
      - uses: google-github-actions/release-please-action@v3
        id: release
        with:
          package-name: itax_code
          release-type: ruby
          token: ${{secrets.GITHUB_TOKEN}}
          version-file: "lib/itax_code/version.rb"
      - uses: actions/checkout@v3
        if: ${{steps.release.outputs.release_created}}
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: 2.7.0
        if: ${{steps.release.outputs.release_created}}
      - run: bundle install
        if: ${{steps.release.outputs.release_created}}
      - run: ./bin/release
        env:
          RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
        if: ${{steps.release.outputs.release_created}}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
itax_code-2.0.1 .github/workflows/release.yml
itax_code-2.0.0 .github/workflows/release.yml
itax_code-1.0.1 .github/workflows/release.yml
itax_code-1.0.0 .github/workflows/release.yml
itax_code-0.4.1 .github/workflows/release.yml
itax_code-0.4.0 .github/workflows/release.yml