Skip to content

Commit cdacecd

Browse files
committed
fix the Release workfloiw publish job
1 parent 9e7d170 commit cdacecd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
- name: Download gem artifact
197197
uses: actions/download-artifact@v4
198198
with:
199-
name: gem-${{ needs.validate.outputs.version }}
199+
name: ${{ needs.build.outputs.artifact_name }}
200200

201201
- name: Configure RubyGems credentials
202202
run: |
@@ -211,7 +211,7 @@ jobs:
211211
- name: Publish gem to RubyGems
212212
run: |
213213
echo "🚀 Publishing gem to RubyGems..."
214-
gem push twelvedata_ruby-${{ needs.validate.outputs.version }}.gem
214+
gem push ${{ needs.build.outputs.artifact_name }}
215215
216216
echo "✅ Gem published successfully!"
217217
echo "📦 Published: twelvedata_ruby v${{ needs.validate.outputs.version }}"

0 commit comments

Comments
 (0)