Skip to content

Commit bd72d09

Browse files
committed
ci: prepare release 0.0.1-beta
1 parent 1c937d2 commit bd72d09

File tree

13 files changed

+46
-12
lines changed

13 files changed

+46
-12
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @neo-technology/team-connectors
1+
* @venikkin @LackOfMorals

.github/workflows/release.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
goreleaser:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
16+
with:
17+
fetch-depth: 0
18+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
19+
with:
20+
go-version-file: 'go.mod'
21+
cache: true
22+
- name: Import GPG key
23+
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6.3.0
24+
id: import_gpg
25+
with:
26+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
27+
passphrase: ${{ secrets.PASSPHRASE }}
28+
- name: Run GoReleaser
29+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
30+
with:
31+
args: release --clean
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
PROVIDER_NAME=neo4jaura
4-
VERSION=0.0.1
4+
VERSION=0.0.1-beta
55
PLUGIN_FOLDER="${HOME}/.terraform.d/plugins/terraform.local/local/${PROVIDER_NAME}/${VERSION}/darwin_arm64/terraform-provider-${PROVIDER_NAME}_v${VERSION}"
66

77
go fmt

examples/00-projects-data-source/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
neo4jaura = {
55
source = "terraform.local/local/neo4jaura"
6-
version = "0.0.1"
6+
version = "0.0.1-beta"
77
}
88
}
99
}

examples/01-create-and-delete-instance/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
neo4jaura = {
55
source = "terraform.local/local/neo4jaura"
6-
version = "0.0.1"
6+
version = "0.0.1-beta"
77
}
88
}
99
}

examples/02-update-instance/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
neo4jaura = {
55
source = "terraform.local/local/neo4jaura"
6-
version = "0.0.1"
6+
version = "0.0.1-beta"
77
}
88
}
99
}

examples/03-pause-and-resume-instance/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
neo4jaura = {
55
source = "terraform.local/local/neo4jaura"
6-
version = "0.0.1"
6+
version = "0.0.1-beta"
77
}
88
}
99
}

examples/04-create-paused-instance/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
neo4jaura = {
55
source = "terraform.local/local/neo4jaura"
6-
version = "0.0.1"
6+
version = "0.0.1-beta"
77
}
88
}
99
}

examples/05-create-instance-from-another-instance/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
neo4jaura = {
55
source = "terraform.local/local/neo4jaura"
6-
version = "0.0.1"
6+
version = "0.0.1-beta"
77
}
88
}
99
}

examples/06-create-instance-from-snapshot/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
neo4jaura = {
55
source = "terraform.local/local/neo4jaura"
6-
version = "0.0.1"
6+
version = "0.0.1-beta"
77
}
88
}
99
}

0 commit comments

Comments
 (0)