Skip to content

Commit

Permalink
create hash first, otherwise post-action fails (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasjucker authored Jan 30, 2025
1 parent a09c77c commit 6ec65cb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions jenkins/RemoteExtraction
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ pipeline {
"""
}
}
stage('Create Hash from Build ID') {
steps {
sh """
python3 src/hash.py --hash-file ${WORKSPACE}/hash.txt
"""
}
}
stage('Validate User Input') {
steps {
withCredentials([string(credentialsId: 'd976fe24-cabf-479e-854f-587c152644bc', variable: 'GITHUB_AUTH_TOKEN')]) {
Expand All @@ -28,13 +35,6 @@ pipeline {
}
}
}
stage('Create Hash from Build ID') {
steps {
sh """
python3 src/hash.py --hash-file ${WORKSPACE}/hash.txt
"""
}
}
stage('Run GridExtpar') {
steps {
sh """
Expand Down

0 comments on commit 6ec65cb

Please sign in to comment.