File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
1
name : Build and Publish Images
2
-
3
- on :
2
+ " on " :
4
3
push :
5
- tags : [ 'ruby-*.*.*' ]
6
-
4
+ tags :
5
+ - ruby-*.*.*
7
6
jobs :
8
7
build :
9
8
name : Build Images
10
-
11
9
strategy :
12
10
fail-fast : false
13
11
matrix :
18
16
- 3.4.2
19
17
- 3.4.1
20
18
- 3.4.0
19
+ - 3.3.9
21
20
- 3.3.8
22
21
- 3.3.7
23
22
- 3.3.6
@@ -36,15 +35,13 @@ jobs:
36
35
- 3.2.2
37
36
- 3.2.1
38
37
- 3.2.0
39
-
40
38
runs-on : ubuntu-latest
41
39
permissions :
42
40
contents : read
43
41
packages : write
44
42
steps :
45
43
- name : Checkout (GitHub)
46
44
uses : actions/checkout@v4
47
-
48
45
- name : Build and Publish Image
49
46
uses : ./.github/actions/build-and-publish-image
50
47
with :
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ check "mise is installed" bash -c "mise --version"
8
8
check " mise init is sourced in the bashrc" bash -c " grep 'eval \"\$ (~/.local/bin/mise activate bash)\" ' $HOME /.bashrc"
9
9
check " mise idiomatic version file is enabled for ruby" bash -c " mise settings | grep idiomatic_version_file_enable_tools | grep ruby"
10
10
check " Ruby is installed with YJIT" bash -c " RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
11
- check " Ruby version is set to 3.4.5 " bash -c " mise use -g ruby | grep 3.4.5 "
11
+ check " Ruby version is set to 3.3.9 " bash -c " mise use -g ruby | grep 3.3.9 "
12
12
13
13
reportResults
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ check "rbenv is installed" bash -c "rbenv --version"
9
9
check " ruby-build is installed" bash -c " ls -l $HOME /.rbenv/plugins/ruby-build | grep '\-> /usr/local/share/ruby-build'"
10
10
eval " $( rbenv init -) "
11
11
check " Ruby is installed with YJIT" bash -c " RUBY_YJIT_ENABLE=1 ruby -v | grep +YJIT"
12
- check " Ruby version is set to 3.4.5 " bash -c " rbenv global | grep 3.4.5 "
12
+ check " Ruby version is set to 3.3.9 " bash -c " rbenv global | grep 3.3.9 "
13
13
14
14
reportResults
You can’t perform that action at this time.
0 commit comments