Skip to content

Commit 835c820

Browse files
authored
Replace deprecated set-output command (#36)
* replaced deprecated set output command * version patch bump
1 parent 39c01a4 commit 835c820

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/gem-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
3030
- name: Get Gem Version
3131
id: get-gem-version
32-
run: echo "::set-output name=GEM_VERSION::$(bundle exec ruby -e 'puts Rulezilla::VERSION')"
32+
run: echo "GEM_VERSION=$(bundle exec ruby -e 'puts Rulezilla::VERSION')" >> $GITHUB_OUTPUT
3333
- name: Create Release
3434
uses: actions/github-script@v6
3535
env:

lib/rulezilla/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Rulezilla
4-
VERSION = '0.4.2'
4+
VERSION = '0.4.3'
55
end

0 commit comments

Comments
 (0)