Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Replace deprecated set-output command (#45)
Browse files Browse the repository at this point in the history
* replaced depreciated set-output command

* bumped patch
  • Loading branch information
wiktordepina authored Nov 3, 2022
1 parent 3fedc28 commit 5de0d7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gem-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
- name: Get Gem Version
id: get-gem-version
run: echo "::set-output name=GEM_VERSION::$(bundle exec ruby -e 'puts FlipFab::VERSION')"
run: echo "GEM_VERSION=$(bundle exec ruby -e 'puts FlipFab::VERSION')" >> $GITHUB_OUTPUT
- name: Create Release
uses: actions/github-script@v6
env:
Expand Down
2 changes: 1 addition & 1 deletion lib/flip_fab/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

module FlipFab
base = '1.0.17'
base = '1.0.18'

# SB-specific versioning "algorithm" to accommodate BNW/Jenkins/gemstash
VERSION = (pre = ENV.fetch('GEM_PRE_RELEASE', '')).empty? ? base : "#{base}.#{pre}"
Expand Down

0 comments on commit 5de0d7f

Please sign in to comment.