Skip to content

Commit c60b890

Browse files
committed
fix: release
1 parent bec791c commit c60b890

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/publish.yml

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

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

lib/appwrite/client.rb

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ def initialize
1515
'x-sdk-name'=> 'Ruby',
1616
'x-sdk-platform'=> 'server',
1717
'x-sdk-language'=> 'ruby',
18-
'x-sdk-version'=> '13.0.0',
19-
'X-Appwrite-Response-Format' => '1.6.0'
20-
}
21-
18+
'x-sdk-version'=> '13.0.0', 'X-Appwrite-Response-Format' => '1.6.0' }
2219
@endpoint = 'https://cloud.appwrite.io/v1'
2320
end
2421

0 commit comments

Comments
 (0)