Skip to content

Commit

Permalink
Adding release workflow (#112)
Browse files Browse the repository at this point in the history
* Adding release workflow

* Update release.yaml

Testing workflow run

* Bumped version to 1.0.23

* updating file permission for publishing gem

* Bumped version to 1.0.24

* Update version.rb

* removed test code
  • Loading branch information
HassanAkbar authored Nov 10, 2023
1 parent 8dec210 commit 4306541
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: release

on:
workflow_dispatch:
inputs:
next_version:
description: |
Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
required: true
default: 'skip'

jobs:
release:
uses: metanorma/ci/.github/workflows/rubygems-release.yml@main
with:
next_version: ${{ github.event.inputs.next_version }}
secrets:
rubygems-api-key: ${{ secrets.RIBOSE_CI_RUBYGEMS_API_KEY }}
2 changes: 1 addition & 1 deletion lib/tractive/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Tractive
VERSION = "1.0.25"
VERSION = "1.0.26"
end

0 comments on commit 4306541

Please sign in to comment.