45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package vagrantcloud
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
)
|
|
|
|
type stepReleaseVersion struct {
|
|
}
|
|
|
|
func (s *stepReleaseVersion) Run(state multistep.StateBag) multistep.StepAction {
|
|
client := state.Get("client").(*VagrantCloudClient)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
box := state.Get("box").(*Box)
|
|
version := state.Get("version").(*Version)
|
|
config := state.Get("config").(Config)
|
|
|
|
ui.Say(fmt.Sprintf("Releasing version: %s", version.Version))
|
|
|
|
if config.NoRelease {
|
|
ui.Message("Not releasing version due to configuration")
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
path := fmt.Sprintf("box/%s/version/%v/release", box.Tag, version.Number)
|
|
|
|
resp, err := client.Put(path)
|
|
|
|
if err != nil || (resp.StatusCode != 200) {
|
|
cloudErrors := &VagrantCloudErrors{}
|
|
err = decodeBody(resp, cloudErrors)
|
|
state.Put("error", fmt.Errorf("Error releasing version: %s", cloudErrors.FormatErrors()))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
ui.Message(fmt.Sprintf("Version successfully released and available"))
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepReleaseVersion) Cleanup(state multistep.StateBag) {
|
|
// No cleanup
|
|
}
|