diff --git a/.github/workflows/release-pulumi-gotiac-aws.yml b/.github/workflows/release-pulumi-gotiac-aws.yml index 0fbd1a8d..8726676e 100644 --- a/.github/workflows/release-pulumi-gotiac-aws.yml +++ b/.github/workflows/release-pulumi-gotiac-aws.yml @@ -68,7 +68,7 @@ jobs: fail-fast: true matrix: version: - - 'v0.1.6' + - 'v0.1.7' binary: - pulumi-resource-gotiac goversion: @@ -114,6 +114,9 @@ jobs: python-version: ${{matrix.pythonversion}} - name: Setup Bun uses: oven-sh/setup-bun@v1 + - name: Build binary + working-directory: ./packages/pulumi-gotiac-aws + run: make build_provider - name: Build SDK working-directory: ./packages/pulumi-gotiac-aws run: make build_${{ matrix.language }}_sdk diff --git a/packages/pulumi-gotiac-aws/Makefile b/packages/pulumi-gotiac-aws/Makefile index 5949354a..c22197ee 100644 --- a/packages/pulumi-gotiac-aws/Makefile +++ b/packages/pulumi-gotiac-aws/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.1.6 +VERSION := 0.1.7 PACK := gotiac PACKDIR := sdk diff --git a/packages/pulumi-gotiac-aws/provider/pkg/version/version.go b/packages/pulumi-gotiac-aws/provider/pkg/version/version.go index bd34cd7f..ccc2ee88 100644 --- a/packages/pulumi-gotiac-aws/provider/pkg/version/version.go +++ b/packages/pulumi-gotiac-aws/provider/pkg/version/version.go @@ -15,4 +15,4 @@ package version // Version is initialized by the Go linker to contain the semver of this build. -var Version string = "0.1.6" +var Version string = "0.1.7"