File tree Expand file tree Collapse file tree 3 files changed +29
-17
lines changed
Expand file tree Collapse file tree 3 files changed +29
-17
lines changed Original file line number Diff line number Diff line change 1+ name : Publish to RubyGems
2+ on :
3+ release :
4+ types : [published]
5+
6+ jobs :
7+ publish :
8+ name : Release build and publish
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Check out code
12+ uses : actions/checkout@v4
13+
14+ - name : Set up Ruby
15+ uses : ruby/setup-ruby@v1
16+ with :
17+ ruby-version : 2.7
18+ bundler-cache : true
19+
20+ - name : Set up RubyGems
21+ run : |
22+ cat "---\n:rubygems_api_key: ${{ secrets.RUBYGEMS_TOKEN }}\n" > ~/.gem/credentials
23+ chmod 0600 ~/.gem/credentials
24+
25+ - name : Build gem
26+ run : gem build appwrite.gemspec
27+
28+ - name : Publish gem
29+ run : gem push appwrite-*.gem
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ module Name
1313 V1_BUILDS = 'v1-builds'
1414 V1_MESSAGING = 'v1-messaging'
1515 V1_MIGRATIONS = 'v1-migrations'
16- HAMSTERV1 = 'hamsterv1'
1716 end
1817 end
1918end
You can’t perform that action at this time.
0 commit comments