Skip to content

Commit bb5c5f0

Browse files
committed
fix ruby publish workflow
1 parent 69c2079 commit bb5c5f0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/publish-ruby.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ jobs:
3030
- run: |
3131
set -ex
3232
cd dist
33-
for gem in $(ls dist);
33+
ls
34+
for gem in *.gem;
3435
do
3536
gem push "${gem}";
3637
sleep 5;
3738
done
39+
3840

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Pyroscope
2-
VERSION = '0.6.2'.freeze
2+
VERSION = '0.6.3'.freeze
33
end

0 commit comments

Comments
 (0)