Skip to content

Commit

Permalink
add publish gh action; bump dep
Browse files Browse the repository at this point in the history
  • Loading branch information
UlyssesZh committed Oct 1, 2024
1 parent 44a6bc5 commit 93faaf6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Ruby

on:
release:
types: [published]

jobs:
publish:
permissions:
id-token: write
runs-on: ubuntu-latest
name: Publish to RubyGems
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.5
bundler-cache: true
- name: Publish
uses: rubygems/release-gem@v1
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
alda-rb (0.3.1)
alda-rb (0.4.0)
bencode
colorize

Expand All @@ -28,4 +28,4 @@ DEPENDENCIES
rdoc

BUNDLED WITH
2.5.18
2.5.20
2 changes: 1 addition & 1 deletion lib/alda-rb/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ module Alda
# The version number of alda-rb.
#
# The same as that in alda-rb gem spec.
VERSION = '0.3.1'
VERSION = '0.4.0'
end

0 comments on commit 93faaf6

Please sign in to comment.