Skip to content

Commit

Permalink
Tag release fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marianob85 committed Nov 11, 2021
1 parent 47739cf commit cebbc84
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ pipeline
basefilename=$(basename "$filename")
github-release upload --user marianob85 --repo ${GITHUB_REPO} --tag ${TAG_NAME} --name ${basefilename} --file ${filename}
done
for filename in Installers/*.zip; do
[ -e "$filename" ] || continue
basefilename=$(basename "$filename")
github-release upload --user marianob85 --repo ${GITHUB_REPO} --tag ${TAG_NAME} --name ${basefilename} --file ${filename}
done
'''
}
}
Expand Down

0 comments on commit cebbc84

Please sign in to comment.