Ditch the BUILD for the CI_COMMIT_TAG var

This commit is contained in:
Greg Hellings
2024-07-23 17:55:03 -05:00
parent 2afda03e14
commit 906666f836
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -63,7 +63,7 @@ hyperv-iso.amd64:
COMMAND: >
packer build ${only}
-var-file="${distro}"
-var build=${BUILD}
-var build=${CI_COMMIT_TAG}
-var cpus=2
-var memory=4096
${EXCEPT}
@@ -90,5 +90,5 @@ hyperv-iso.amd64:
tag_name: '$CI_COMMIT_TAG'
description: >-
Release $CI_COMMIT_TAG, found on [Vagrant Cloud](https://app.vagrantup.com/boxen/)
as version v${BUILD}
as version v${CI_COMMIT_TAG}
+1 -1
View File
@@ -46,7 +46,7 @@ variable "vagrant_cloud_token" {
variable "build" {
type = string
default = "0.1"
default = env("CI_COMMIT_TAG")
}
variable "cd_content" {