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 +4 -4
- data/.github/workflows/release.yml +6 -0
- data/.github/workflows/test.yml +0 -18
- data/CHANGELOG.md +4 -0
- data/lib/billomat/version.rb +1 -1
- metadata +2 -3
- data/.github/workflows/documentation.yml +0 -40
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9833d5ea8781cc91dbf3457bd6fdf68096ddb6ed106b9445042df12ded84c69
|
4
|
+
data.tar.gz: 890d5bba9d9d6812e135b841de9c7533d74b43efde277e5ca3addfca815cb3c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 }}'
|
data/.github/workflows/test.yml
CHANGED
@@ -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
data/lib/billomat/version.rb
CHANGED
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.
|
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-
|
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()
|