Skip to content

Commit 489651c

Browse files
ci: fix mismatched input names, correct typo (#596)
1 parent e44778a commit 489651c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/rubygems-publish/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ runs:
2626
gem build *.gemspec
2727
gem push *.gem
2828
env:
29-
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_AUTH_TOKEN }}
29+
GEM_HOST_API_KEY: ${{ inputs.rubygems-token }}

.github/workflows/ruby-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- uses: ./.github/actions/rubygems-publish
6060
with:
6161
ruby-version: ${{ inputs.ruby-version }}
62-
rubygems-token: ${{ secrets.rubgems-token }}
62+
rubygems-token: ${{ secrets.rubygems-token }}
6363

6464
# Create a release for the tag
6565
- uses: ./.github/actions/release-create

0 commit comments

Comments
 (0)