diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 287fbb1..27947bc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,8 +12,8 @@ name: release on: push: - tags: - - 'v*' + branches: + - '*' jobs: goreleaser: runs-on: ubuntu-latest @@ -35,8 +35,7 @@ jobs: name: Import GPG key id: import_gpg uses: crazy-max/ghaction-import-gpg@v5 - env: - # These secrets will need to be configured for the repository: + with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PASSPHRASE }} - diff --git a/docs/guides/custom_instance.md b/docs/guides/custom_instance.md index 9d14a23..60f2212 100644 --- a/docs/guides/custom_instance.md +++ b/docs/guides/custom_instance.md @@ -12,7 +12,7 @@ terraform { required_providers { contabo = { source = "contabo/contabo" - version = "v0.1.9" + version = "v0.1.10" } } } diff --git a/docs/guides/use_environment_variables.md b/docs/guides/use_environment_variables.md index adbd626..6dc7e7d 100644 --- a/docs/guides/use_environment_variables.md +++ b/docs/guides/use_environment_variables.md @@ -12,7 +12,7 @@ terraform { required_providers { contabo = { source = "contabo/contabo" - version = "v0.1.9" + version = "v0.1.10" } } } diff --git a/docs/index.md b/docs/index.md index 2cd288b..ed73200 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,7 +18,7 @@ terraform { required_providers { contabo = { source = "contabo/contabo" - version = "v0.1.9" + version = "v0.1.10" } } } diff --git a/examples/custom_instance/custom_instance.tf b/examples/custom_instance/custom_instance.tf index 8845fc1..f98565d 100644 --- a/examples/custom_instance/custom_instance.tf +++ b/examples/custom_instance/custom_instance.tf @@ -2,7 +2,7 @@ terraform { required_providers { contabo = { source = "contabo/contabo" - version = "v0.1.9" + version = "v0.1.10" } } } diff --git a/examples/main.tf.example b/examples/main.tf.example index b2eef53..4ce5d3a 100644 --- a/examples/main.tf.example +++ b/examples/main.tf.example @@ -2,7 +2,7 @@ terraform { required_providers { contabo = { source = "contabo/contabo" - version = "v0.1.9" + version = "v0.1.10" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index cb6aee7..5c576a1 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { contabo = { source = "contabo/contabo" - version = "v0.1.9" + version = "v0.1.10" } } } diff --git a/examples/use_environment_variables/use_environment_variables.tf b/examples/use_environment_variables/use_environment_variables.tf index bb06a27..20e10e5 100644 --- a/examples/use_environment_variables/use_environment_variables.tf +++ b/examples/use_environment_variables/use_environment_variables.tf @@ -2,7 +2,7 @@ terraform { required_providers { contabo = { source = "contabo/contabo" - version = "v0.1.9" + version = "v0.1.10" } } }