Skip to content

Commit 5eb163b

Browse files
committed
v0.0.7
1 parent 30e23cc commit 5eb163b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/publish-provider.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ jobs:
5656
go-version: '1.19'
5757
stable: true
5858

59+
- id: release_tag
60+
name: Determine release tag
61+
run: 'echo "::set-output name=tag::v0.2.0-${{ github.sha }}"'
62+
5963
# Import the GPG key before the build step that requires it
6064
- name: Import GPG key
6165
uses: crazy-max/ghaction-import-gpg@v6
@@ -72,8 +76,8 @@ jobs:
7276
env:
7377
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7478
with:
75-
tag_name: ${{ github.ref_name }}
76-
release_name: Release ${{ github.ref_name }}
79+
release_name: 'Release ${{ steps.release_tag.outputs.tag }}'
80+
tag_name: '${{ steps.release_tag.outputs.tag }}'
7781
draft: false
7882
prerelease: false
7983

examples/provider/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
liblab = {
44
source = "hashicorp.com/kapicic/liblab"
5-
version = "0.0.6"
5+
version = "0.0.7"
66
}
77
}
88
}

internal/provider/provider.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type liblabProviderModel struct {
3131

3232
func (p *Provider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse) {
3333
resp.TypeName = "liblab"
34-
resp.Version = "0.0.6"
34+
resp.Version = "0.0.7"
3535
}
3636

3737
func (p *Provider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) {

0 commit comments

Comments
 (0)