Skip to content

Commit fac0f62

Browse files
authored
Merge pull request #998 from appwrite/fix-ruby-publish
Fix secrets templating
2 parents ec4b22d + d243dd4 commit fac0f62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/ruby/.github/workflows/publish.yml.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
echo -e "---\n:rubygems_api_key: $RUBYGEMS_TOKEN\n" > ~/.gem/credentials
2323
chmod 0600 ~/.gem/credentials
2424
env:
25-
RUBYGEMS_TOKEN: ${{ secrets.RUBYGEMS_TOKEN }}
25+
RUBYGEMS_TOKEN: {{ '${{ secrets.RUBYGEMS_TOKEN }}' | raw }}
2626

2727
- name: Build gem
2828
run: gem build {{ spec.title | caseLower }}.gemspec

0 commit comments

Comments
 (0)