alarmable 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5973ee27121c858da3ded029169bf65f62dcd0642dc387ca517cf89d8bea7b79
4
- data.tar.gz: 5775b099f1b78138b451a31b9b94ac7d17dca5035a776d6e5beb8755fe668f79
3
+ metadata.gz: 36cb786065316deccd3c6bc5bd91e995843559a5c022b816c4d3f0c52818e7ac
4
+ data.tar.gz: a4cb916342797a8d9b542011232eb4c5cde3335e5f2c8bf6905a9442a9293073
5
5
  SHA512:
6
- metadata.gz: 2159b5ed10424528bd1192a8f5332859b7660e72f5722ec59223f9068847e8bdf05ec5e1b54e64b1dfceb4892c0b82fdf5e3a578e93e29c2eeb8d0f5f59b71d4
7
- data.tar.gz: de566e02b7042cce26038febc5f22b7fd9398530c9cc78c621155217f0a94e3a5747d005a2792a30cbc1f568d067580f4256438a68035c05f5d72e6030c3a104
6
+ metadata.gz: eee9ba9d75b1937df329735cf6403282704d9367e8ee48954daeeb3603676eebdc26dab3e312bb01f9d0f0ee4f1df50e74ed7d89ed9f96d3f65e7b60b4ce4806
7
+ data.tar.gz: 629c76bf6e57e32f20cf904d4ea8f55c081a713934ea10ed49a2c17a0ce7140fa7507c4238631e863fa2b3b806dcb1009586f518b70251c7a5b33b6de7b96887
@@ -46,3 +46,9 @@ jobs:
46
46
 
47
47
  - name: Push the release Git commit/tag and package to the registry
48
48
  run: make release
49
+
50
+ - name: Build and upload application documentation
51
+ run: api-docs && coverage --docs-only
52
+ env:
53
+ WORKFLOW_DISPATCH_TOKEN: '${{ secrets.WORKFLOW_DISPATCH_TOKEN }}'
54
+ GITHUB_TAG: 'v${{ github.event.inputs.VERSION }}'
@@ -54,21 +54,3 @@ jobs:
54
54
 
55
55
  - name: Upload the code coverage report
56
56
  run: coverage
57
-
58
- trigger-docs:
59
- name: Trigger the documentation upload
60
- runs-on: ubuntu-22.04
61
- timeout-minutes: 2
62
- needs: test
63
- if: github.ref == 'refs/heads/master'
64
- steps:
65
- - name: Prepare the virtual environment
66
- uses: hausgold/actions/ci@master
67
- with:
68
- clone_token: '${{ secrets.CLONE_TOKEN }}'
69
- settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
70
- settings: '${{ github.repository }}'
71
- target: ci/noop
72
-
73
- - name: Trigger the documentation upload
74
- run: workflow documentation
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.2.1
6
+
7
+ * Added API docs building to continuous integration (#9)
8
+
5
9
  ### 1.2.0
6
10
 
7
11
  * Upgraded to PostgreSQL 15.2 and Redis 7.0 (#5)
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Alarmable
5
5
  # The version of the +alarmable+ gem
6
- VERSION = '1.2.0'
6
+ VERSION = '1.2.1'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alarmable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-08 00:00:00.000000000 Z
11
+ date: 2024-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activejob
@@ -89,7 +89,6 @@ extensions: []
89
89
  extra_rdoc_files: []
90
90
  files:
91
91
  - ".editorconfig"
92
- - ".github/workflows/documentation.yml"
93
92
  - ".github/workflows/release.yml"
94
93
  - ".github/workflows/test.yml"
95
94
  - ".gitignore"
@@ -1,40 +0,0 @@
1
- name: Build Documentation
2
- on:
3
- repository_dispatch:
4
- types: [documentation]
5
-
6
- concurrency:
7
- group: 'docs'
8
-
9
- jobs:
10
- docs:
11
- name: Build gem documentation
12
- runs-on: ubuntu-22.04
13
- timeout-minutes: 5
14
- steps:
15
- - uses: actions/checkout@v4
16
-
17
- - name: Install the correct Ruby version
18
- uses: ruby/setup-ruby@v1
19
- with:
20
- ruby-version: 2.7
21
- bundler-cache: true
22
- rubygems: '3.4.22'
23
-
24
- - name: Prepare the virtual environment
25
- uses: hausgold/actions/ci@master
26
- with:
27
- clone_token: '${{ secrets.CLONE_TOKEN }}'
28
- settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
29
- settings: '${{ github.repository }}'
30
- target: ci/gem-test
31
-
32
- - name: Build gem documentation
33
- run: make docs
34
-
35
- - name: Upload the code coverage report
36
- run: coverage
37
-
38
- - name: Add this job to the commit status
39
- run: commit-status '${{ job.status }}'
40
- if: always()