Skip to content

Commit 0d86e4f

Browse files
Merge pull request #32 from appwrite/dev
fix: ruby release
2 parents eee346d + 5484ef0 commit 0d86e4f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/publish.yml

+1-1
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: $
25+
RUBYGEMS_TOKEN: ${{ secrets.RUBYGEMS_TOKEN }}
2626

2727
- name: Build gem
2828
run: gem build appwrite.gemspec

lib/appwrite/client.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ def initialize
1616
'x-sdk-platform'=> 'server',
1717
'x-sdk-language'=> 'ruby',
1818
'x-sdk-version'=> '13.0.0',
19-
'X-Appwrite-Response-Format' => '1.6.0'
19+
'x-appwrite-response-format' => '1.6.0'
2020
}
21-
2221
@endpoint = 'https://cloud.appwrite.io/v1'
2322
end
2423

0 commit comments

Comments
 (0)