Skip to content

Commit 0e720c0

Browse files
Merge branch 'develop' of git@gitea.intranda.com:goobi-workflow/goobi-plugin-step-pdf-extraction.git into develop
2 parents e4334b2 + 238d250 commit 0e720c0

File tree

2 files changed

+27
-19
lines changed

2 files changed

+27
-19
lines changed

Jenkinsfile

+10-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pipeline {
2727
anyOf {
2828
branch 'master'
2929
branch 'release_*'
30+
branch 'hotfix_release_*'
3031
allOf {
3132
branch 'PR-*'
3233
expression { env.CHANGE_BRANCH.startsWith("release_") }
@@ -43,6 +44,7 @@ pipeline {
4344
anyOf {
4445
branch 'master'
4546
branch 'release_*'
47+
branch 'hotfix_release_*'
4648
allOf {
4749
branch 'PR-*'
4850
expression { env.CHANGE_BRANCH.startsWith("release_") }
@@ -59,6 +61,7 @@ pipeline {
5961
anyOf {
6062
branch 'master'
6163
branch 'release_*'
64+
branch 'hotfix_release_*'
6265
branch 'sonar_*'
6366
allOf {
6467
branch 'PR-*'
@@ -83,6 +86,7 @@ pipeline {
8386
anyOf {
8487
branch 'master'
8588
branch 'develop'
89+
branch 'hotfix_release_*'
8690
}
8791
}
8892
steps {
@@ -95,7 +99,12 @@ pipeline {
9599
}
96100
}
97101
stage('tag release') {
98-
when { branch 'master' }
102+
when {
103+
anyOf {
104+
branch 'master'
105+
branch 'hotfix_release_*'
106+
}
107+
}
99108
steps {
100109
withCredentials([gitUsernamePassword(credentialsId: '93f7e7d3-8f74-4744-a785-518fc4d55314',
101110
gitToolName: 'git-tool')]) {

README.md

+17-18
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,38 @@
22

33
<img src="https://goobi.io/wp-content/uploads/logo_goobi_plugin.png" align="right" style="margin:0 0 20px 20px;" alt="Plugin for Goobi workflow" width="175" height="109">
44

5-
Goobi workflow plugin to automatically read information from PDF files.
5+
This Step plugin for Goobi workflow automatically reads information from PDF files and extracts images and full text with coordinates to store these inside of the OCR and images folders.
66

77
This is a plugin for Goobi workflow, the open source workflow tracking software for digitisation projects. More information about Goobi workflow is available under https://goobi.io. If you want to get in touch with the user community simply go to https://community.goobi.io.
88

99
## Plugin details
1010

1111
More information about the functionality of this plugin and the complete documentation can be found in the central documentation area at https://docs.goobi.io
1212

13-
Detail | Description
14-
--- | ---
13+
Detail | Description
14+
--------------------------- | ----------------------
1515
**Plugin identifier** | intranda_step_pdf-extraction
16-
**Plugin type** | Step plugin
17-
**Licence** | GPL 2.0 or newer
18-
**Documentation (German)** | https://docs.goobi.io/goobi-workflow-plugins-de/step/intranda_step_pdf-extraction
19-
**Documentation (English)** | https://docs.goobi.io/goobi-workflow-plugins-en/step/intranda_step_pdf-extraction
16+
**Plugin type** | step
17+
**Licence** | GPL 2.0 or newer
18+
**Documentation (German)** | https://docs.goobi.io/workflow-plugins/v/ger/step/goobi-plugin-step-pdf-extraction
19+
**Documentation (English)** | https://docs.goobi.io/workflow-plugins/v/eng/step/goobi-plugin-step-pdf-extraction
2020

2121
## Goobi details
2222

2323
Goobi workflow is an open source web application to manage small and large digitisation projects mostly in cultural heritage institutions all around the world. More information about Goobi can be found here:
2424

25-
Detail | Description
26-
--- | ---
27-
**Goobi web site** | https://www.goobi.io
28-
**Twitter** | https://twitter.com/goobi
29-
**Goobi community** | https://community.goobi.io
25+
Detail | Description
26+
--------------------------- | ---------------------------
27+
**Goobi web site** | https://www.goobi.io
28+
**Goobi community** | https://community.goobi.io
29+
**Goobi documentation** | https://docs.goobi.io
3030

3131
## Development
3232

3333
This plugin was developed by intranda. If you have any issues, feedback, question or if you are looking for more information about Goobi workflow, Goobi viewer and all our other developments that are used in digitisation projects please get in touch with us.
3434

35-
Contact | Details
36-
--- | ---
37-
**Company name** | intranda GmbH
38-
**Address** | Bertha-von-Suttner-Str. 9, 37085 Göttingen, Germany
39-
**Web site** | https://www.intranda.com
40-
**Twitter** | https://twitter.com/intranda
35+
Contact | Details
36+
--------------------------- | ----------------------------------------------------
37+
**Company name** | intranda GmbH
38+
**Address** | Bertha-von-Suttner-Str. 9, 37085 Göttingen, Germany
39+
**Web site** | https://www.intranda.com

0 commit comments

Comments
 (0)