Skip to content

Commit 2572438

Browse files
committed
- release.yml: generate files before publishing
1 parent 315f65a commit 2572438

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ jobs:
2020
with:
2121
ruby-version: 3.2
2222
bundler-cache: true
23+
- name: Install Ragel
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install ragel
27+
- name: Generate parser files and run tests
28+
run: |
29+
bundle exec rake test
2330
- name: Configure RubyGems Credentials
2431
uses: rubygems/configure-rubygems-credentials@main
2532
- name: Publish to RubyGems

lib/parser/ruby-next/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 Parser
4-
NEXT_VERSION = "3.4.0.0"
4+
NEXT_VERSION = "3.4.0.1"
55
end

0 commit comments

Comments
 (0)