rollout-ui 0.9.0 → 0.9.1
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 +10 -3
- data/.github/workflows/test.yml +2 -2
- data/lib/rollout/ui/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: e63cbca0b53def021d093e24434d1c3857515164a82f92878f0b832c09b7319a
|
|
4
|
+
data.tar.gz: 05a822fb2f9ed0e8032681e255fc981dfa70d23f2e061bec5bf59bad6c54f722
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3472089c2fe218f5c1bc35911a15239ed79e3c243d91903d2c04f53d09e816893dc2f841ad7d287d7debece8b53d77d39a3b725db27f0f92039cea8959a01db7
|
|
7
|
+
data.tar.gz: 3844e1d841186b55edb5757f92e3cb48c517ba94beb26c06dcc97ea4ebbe1af44665aed0e882dc61584113dd52ca44aeeef28118a9e49e7c943adbc5a8e5f89a
|
|
@@ -23,7 +23,7 @@ jobs:
|
|
|
23
23
|
--health-retries 5
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout code
|
|
26
|
-
uses: actions/checkout@
|
|
26
|
+
uses: actions/checkout@v6
|
|
27
27
|
with:
|
|
28
28
|
persist-credentials: false
|
|
29
29
|
- name: Setup Ruby
|
|
@@ -34,10 +34,17 @@ jobs:
|
|
|
34
34
|
run: bundle exec rspec
|
|
35
35
|
- name: Release to RubyGems
|
|
36
36
|
uses: rubygems/release-gem@v1
|
|
37
|
+
|
|
38
|
+
github-release:
|
|
39
|
+
needs: release
|
|
40
|
+
runs-on: ubuntu-latest
|
|
41
|
+
permissions:
|
|
42
|
+
contents: write
|
|
43
|
+
steps:
|
|
37
44
|
- name: Create GitHub Release
|
|
38
|
-
uses: softprops/action-gh-release@
|
|
45
|
+
uses: softprops/action-gh-release@v3
|
|
39
46
|
with:
|
|
40
|
-
tag_name: ${{ github.
|
|
47
|
+
tag_name: ${{ github.ref_name }}
|
|
41
48
|
name: ${{ github.ref_name }}
|
|
42
49
|
generate_release_notes: true
|
|
43
50
|
draft: false
|
data/.github/workflows/test.yml
CHANGED
|
@@ -23,10 +23,10 @@ jobs:
|
|
|
23
23
|
--health-retries 5
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout code
|
|
26
|
-
uses: actions/checkout@
|
|
26
|
+
uses: actions/checkout@v6
|
|
27
27
|
- name: Setup Ruby
|
|
28
28
|
uses: ruby/setup-ruby@v1
|
|
29
29
|
with:
|
|
30
30
|
bundler-cache: true
|
|
31
31
|
- name: Run tests
|
|
32
|
-
run: bundle exec rspec
|
|
32
|
+
run: bundle exec rspec
|
data/lib/rollout/ui/version.rb
CHANGED