File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash -eu
2
2
3
+ GEM_NAME=" fastlane-plugin-wpmreleasetoolkit"
4
+
3
5
echo " --- :hammer: Build Gemspec"
4
- gem build fastlane-plugin-wpmreleasetoolkit .gemspec
6
+ gem build " $GEM_NAME .gemspec" -o " $GEM_NAME .gem "
5
7
6
8
echo " --- :sleuth_or_spy: Validate Gem Install"
7
- gem install --user-install fastlane-plugin-wpmreleasetoolkit- * .gem
9
+ gem install --user-install " $GEM_NAME .gem"
8
10
9
11
echo " --- :rubygems: Gem Push"
10
12
echo " :rubygems_api_key: ${RUBYGEMS_API_KEY} " >> " .gem-credentials"
11
13
chmod 600 " .gem-credentials"
12
- gem push --config-file " .gem-credentials" fastlane-plugin-wpmreleasetoolkit- * .gem
14
+ gem push --config-file " .gem-credentials" " $GEM_NAME .gem"
Original file line number Diff line number Diff line change @@ -24,10 +24,8 @@ steps:
24
24
- label : " 🧪 Build and Test"
25
25
key : test
26
26
command : |
27
- # We only need this for tasks running on a Mac
28
- brew install pkg-config git-lfs libxml2 imagemagick@6
29
-
30
27
echo "--- :git: Setting up git-lfs"
28
+ brew install git-lfs
31
29
git-lfs install
32
30
33
31
echo "--- :rubygems: Setting up Gems"
Original file line number Diff line number Diff line change 18
18
19
19
### Internal Changes
20
20
21
- _ None _
21
+ * Speed up our CI by removing now-useless installation of ImageMagick on CI to run the "Build and Test" step. [ # 348 ]
22
22
23
23
## 4.0.0
24
24
You can’t perform that action at this time.
0 commit comments