immoscout 1.6.0 → 1.6.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: 597eaffbc39621120bd62f4c4d3eed643cc4e82f1f2a535294d1c682d90a8505
4
- data.tar.gz: f748af66813428e632d55753b240f20c7d77423d15d19bacf3d49fe738b51556
3
+ metadata.gz: e82fa2da2e7aafe93a36a364bdf9da3a230cfa6936827fa10357c3df185d3d29
4
+ data.tar.gz: c47bd3e0da0f4dc626b0e85cca97a818642329195270663f653ef3d29104e15c
5
5
  SHA512:
6
- metadata.gz: 6e1055289446447c66655545b3fda1f9586560db7dcb7c5ce2842bf9121ea6c3ef6f7da408ba9f5d420dff30493a27d4e12220a65502419192da3e3ac37a11ad
7
- data.tar.gz: 86d56c26b71ae81bc21026e335a06602786a07aa78248afde2da0a0acbaf3ac53936629a8c5c05a0e78436f11f098602d5b4c33b48cebb44472217ba269479b4
6
+ metadata.gz: '08e95254a5fc0ac5327e234358df9c2df7682527c487873a82f6cbf423327b5d5872d0daf64bbbca9afabeea47182c8bbd5e40611175d4d3dc2c933617036c2e'
7
+ data.tar.gz: 6bc612f2232da8dba62083ab32da3f3ad9246c96d36ece1ca86e0ec0b3c9864345a19fadd197bbd19d526d4de8cdccc11ffee78467dd0f3d75c24c055b5f12e5
@@ -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 }}'
@@ -45,21 +45,3 @@ jobs:
45
45
 
46
46
  - name: Upload the code coverage report
47
47
  run: coverage
48
-
49
- trigger-docs:
50
- name: Trigger the documentation upload
51
- runs-on: ubuntu-22.04
52
- timeout-minutes: 2
53
- needs: test
54
- if: github.ref == 'refs/heads/master'
55
- steps:
56
- - name: Prepare the virtual environment
57
- uses: hausgold/actions/ci@master
58
- with:
59
- clone_token: '${{ secrets.CLONE_TOKEN }}'
60
- settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
61
- settings: '${{ github.repository }}'
62
- target: ci/noop
63
-
64
- - name: Trigger the documentation upload
65
- 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.6.1
6
+
7
+ * Added API docs building to continuous integration (#13)
8
+
5
9
  ### 1.6.0
6
10
 
7
11
  * Moved the development dependencies from the gemspec to the Gemfile (#11)
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Immoscout
5
5
  # The version of the +immoscout+ gem
6
- VERSION = '1.6.0'
6
+ VERSION = '1.6.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: immoscout
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Geissler
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: activesupport
@@ -74,7 +74,6 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - ".editorconfig"
77
- - ".github/workflows/documentation.yml"
78
77
  - ".github/workflows/release.yml"
79
78
  - ".github/workflows/test.yml"
80
79
  - ".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()