diff --git a/CHANGELOG.md b/CHANGELOG.md index 70063df..9f813ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.0 (2024-10-06) + +### Feat + +- **jenkins**: change the output path + ## 0.2.0 (2024-10-06) ### Feat diff --git a/Jenkinsfile b/Jenkinsfile index 6a1d8b6..5aa0520 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,10 +37,20 @@ pipeline { sh ''' #!/bin/bash - mkarchiso -v -w work -o out server/profiledef.sh + echo -ne "I am user " + whoami + + mkarchiso -v -w work -o out server + ''' } } + + post { + always { + archiveArtifacts artifacts: "out/*.iso" + } + } } } } \ No newline at end of file diff --git a/cz.json b/cz.json index 1a24706..563b918 100644 --- a/cz.json +++ b/cz.json @@ -3,7 +3,7 @@ "name": "cz_conventional_commits", "tag_format": "$version", "version_scheme": "semver2", - "version": "0.2.0", + "version": "0.3.0", "update_changelog_on_bump": true, "major_version_zero": true } diff --git a/server/profiledef.sh b/server/profiledef.sh index bfacd66..436fca3 100644 --- a/server/profiledef.sh +++ b/server/profiledef.sh @@ -21,6 +21,4 @@ file_permissions=( ["/root"]="0:0:750" ["/root/.automated_script.sh"]="0:0:755" ["/root/.gnupg"]="0:0:700" - ["/usr/local/bin/choose-mirror"]="0:0:755" - ["/usr/local/bin/livecd-sound"]="0:0:755" )