billomat 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: db8e1e9679da101e6935b9e7d39eb71b690cee55361fc044adaeea8f258035fd
4
- data.tar.gz: c6b5715bfb71b6ba5195316fe159c943fc933c3c18f9beeb98dda8f61d365ded
3
+ metadata.gz: f9833d5ea8781cc91dbf3457bd6fdf68096ddb6ed106b9445042df12ded84c69
4
+ data.tar.gz: 890d5bba9d9d6812e135b841de9c7533d74b43efde277e5ca3addfca815cb3c8
5
5
  SHA512:
6
- metadata.gz: c3da6248dd1adea3abc0343694576f10ad31af6e3aba3f5bcf99473bc9ff08e00bdd33bf025cd1ef63a96b27fe581e4e042abc88ad31f6ac144f03b1cf4c5b2c
7
- data.tar.gz: b7c8e90c897d16409c1ff61606c7f2d41fb8dd8ec439eaaade92641bb9d7956c059b41a39a7474868da08ff89d1bc2db8ad931377ebcab12dd1926df0741a887
6
+ metadata.gz: 047a65d0eff3be51defb5ed8263bfe18544604651c743af8686a2f789e6cc3dc9f41d71fbb2d4e9a9cb7d471d20f92458b435d62a69b68d4551fe31c64a92908
7
+ data.tar.gz: 3950565b122a7821df057a49b5f09b174ddedcf364bc4896182d9f87f8582ccc2ed81ecd814096221acfecef65da3ca308b3dad5176a8f15bb96664c838d9df0
@@ -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 }}'
@@ -42,21 +42,3 @@ jobs:
42
42
 
43
43
  - name: Upload the code coverage report
44
44
  run: coverage
45
-
46
- trigger-docs:
47
- name: Trigger the documentation upload
48
- runs-on: ubuntu-22.04
49
- timeout-minutes: 2
50
- needs: test
51
- if: github.ref == 'refs/heads/master'
52
- steps:
53
- - name: Prepare the virtual environment
54
- uses: hausgold/actions/ci@master
55
- with:
56
- clone_token: '${{ secrets.CLONE_TOKEN }}'
57
- settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
58
- settings: '${{ github.repository }}'
59
- target: ci/noop
60
-
61
- - name: Trigger the documentation upload
62
- 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 (#25)
8
+
5
9
  ### 1.2.0
6
10
 
7
11
  * Moved the development dependencies from the gemspec to the Gemfile (#19)
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Billomat
5
5
  # The version of the +billomat+ 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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: billomat
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
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-07-08 00:00:00.000000000 Z
12
+ date: 2024-08-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client
@@ -34,7 +34,6 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - ".editorconfig"
37
- - ".github/workflows/documentation.yml"
38
37
  - ".github/workflows/release.yml"
39
38
  - ".github/workflows/test.yml"
40
39
  - ".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()