Skip to content

Commit dae9a84

Browse files
author
Justin Zhang
committed
Bump up version to 1.0.6
- Fix golang version
1 parent 2f2a115 commit dae9a84

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: Unshallow
2525
run: git fetch --prune --unshallow
2626
- name: Set up Go
27-
uses: actions/setup-go@v2
27+
uses: actions/setup-go@v4
2828
with:
29-
go-version: 1.20
29+
go-version: '1.20.3'
3030
- name: Describe plugin
3131
id: plugin_describe
3232
run: echo "::set-output name=api_version::$(go run . describe | jq -r '.api_version')"
@@ -37,8 +37,9 @@ jobs:
3737
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
3838
passphrase: ${{ secrets.GPG_PASSPHRASE }}
3939
- name: Run GoReleaser
40-
uses: goreleaser/goreleaser-action@v2
40+
uses: goreleaser/goreleaser-action@v4
4141
with:
42+
distribution: goreleaser
4243
version: latest
4344
args: release --clean
4445
env:

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Scaffolding plugin is intended as a starting point for creating Packer plugi
1111

1212
- [ucloud-uhost](/docs/builders/uhost.mdx) - The `ucloud-uhost` builder provides the capability to build
1313
customized images based on an existing base image for use in UHost Instance.
14-
14+
1515
### Post-processors
1616

1717
- [ucloud-import](/docs/post-processors/import.mdx) - The UCloud Import post-processor takes the RAW, VHD, VMDK, or qcow2
@@ -35,7 +35,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init).
3535
packer {
3636
required_plugins {
3737
ucloud = {
38-
version = ">= 1.0.0"
38+
version = ">= 1.0.6"
3939
source = "github.com/hashicorp/ucloud"
4040
}
4141
}

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "github.com/hashicorp/packer-plugin-sdk/version"
44

55
var (
66
// Version is the main version number that is being run at the moment.
7-
Version = "1.0.5"
7+
Version = "1.0.6"
88

99
// VersionPrerelease is A pre-release marker for the Version. If this is ""
1010
// (empty string) then it means that it is a final release. Otherwise, this

0 commit comments

Comments
 (0)