full360-sequencer 0.2.5 → 0.2.6
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/release.yml +4 -8
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/lib/full360_sequencer/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: e39df18990fb5fdf6924e3e4b60b373f1400db68d6125be7a24b56b3401950f5
|
|
4
|
+
data.tar.gz: 400f3182c16e5f32dfa88883c0717f7ddecc88c1e8aec993a19abbdb2f5e613d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75181267e1df232193818cff99384d6ac2262f3b6059afdf71d1f445ab0b09d869ead4aed3882545a30b8242c0c7091661bbc301bc24410efc9a5d3e57e37459
|
|
7
|
+
data.tar.gz: a78938906d4c9c7cbf650a32f3932000c57349d00490b3779ba55fea428060f6ef3809f265d40ae81f26e75b4209a5032c75d58910007a6b34cfa5d8446a1271
|
|
@@ -50,9 +50,7 @@ jobs:
|
|
|
50
50
|
|
|
51
51
|
- name: Extract tag name
|
|
52
52
|
id: tag
|
|
53
|
-
|
|
54
|
-
with:
|
|
55
|
-
script: return context.payload.ref.replace(/\/refs\/tags\//, '')
|
|
53
|
+
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
56
54
|
|
|
57
55
|
- name: Build JRuby image
|
|
58
56
|
uses: docker/build-push-action@v2
|
|
@@ -62,7 +60,7 @@ jobs:
|
|
|
62
60
|
push: true
|
|
63
61
|
tags: |
|
|
64
62
|
full360/sequencer:jruby-latest
|
|
65
|
-
full360/sequencer:${{ steps.tag.outputs.
|
|
63
|
+
full360/sequencer:${{ steps.tag.outputs.VERSION }}-jruby-latest
|
|
66
64
|
|
|
67
65
|
docker-ruby:
|
|
68
66
|
runs-on: ubuntu-latest
|
|
@@ -83,9 +81,7 @@ jobs:
|
|
|
83
81
|
|
|
84
82
|
- name: Extract tag name
|
|
85
83
|
id: tag
|
|
86
|
-
|
|
87
|
-
with:
|
|
88
|
-
script: return context.payload.ref.replace(/\/refs\/tags\//, '')
|
|
84
|
+
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
|
89
85
|
|
|
90
86
|
- name: Build Ruby image
|
|
91
87
|
uses: docker/build-push-action@v2
|
|
@@ -95,4 +91,4 @@ jobs:
|
|
|
95
91
|
push: true
|
|
96
92
|
tags: |
|
|
97
93
|
full360/sequencer:ruby-latest
|
|
98
|
-
full360/sequencer:${{ steps.tag.outputs.
|
|
94
|
+
full360/sequencer:${{ steps.tag.outputs.VERSION }}-ruby-latest
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED