spree_cm_commissioner 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test_and_build_gem.yml +6 -6
- data/Gemfile.lock +1 -1
- data/lib/spree_cm_commissioner/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebcb431615d0335fb711329a587b1337f3b7cb166a3905b69aa7425b5722c0af
|
4
|
+
data.tar.gz: 3e8091c73ea14c67c938cc143f82637b837726049e239e14fd93ca47fbc34194
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '081444c4677f7339071b9041968bc4f749ded9e6097986df822530f04370909046bb218318c883c1499c7c15a5912e23d4749c501dee3e23a0f9e39caab1ea48'
|
7
|
+
data.tar.gz: 8583c96f326d25054504edd8b727e95ed297fabe3a5fb27088ff7e9491254c66cbd7a19069cda3151aa7a02f730abe22237759d21848bb65f4cc9195558df8d1
|
@@ -98,9 +98,9 @@ jobs:
|
|
98
98
|
DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
|
99
99
|
|
100
100
|
# if: startsWith(github.ref, 'refs/tags/') # Only on tag pushes
|
101
|
-
|
102
|
-
|
103
|
-
|
101
|
+
if: |
|
102
|
+
startsWith(github.ref, 'refs/tags/') ||
|
103
|
+
(github.event_name == 'push' && github.ref == 'refs/heads/2405-build-and-publish-gem')
|
104
104
|
run: |
|
105
105
|
gem build *.gemspec
|
106
106
|
|
@@ -110,9 +110,9 @@ jobs:
|
|
110
110
|
DATABASE_URL: postgres://myuser:mypassword@localhost:5432/test_db
|
111
111
|
|
112
112
|
# if: startsWith(github.ref, 'refs/tags/') # Only on tag pushes
|
113
|
-
|
114
|
-
|
115
|
-
|
113
|
+
if: |
|
114
|
+
startsWith(github.ref, 'refs/tags/') ||
|
115
|
+
(github.event_name == 'push' && github.ref == 'refs/heads/2405-build-and-publish-gem')
|
116
116
|
run: |
|
117
117
|
mkdir -p ~/.gem
|
118
118
|
echo ":rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}" > ~/.gem/credentials
|
data/Gemfile.lock
CHANGED