Skip to content

Commit 88eb8fc

Browse files
feat: prepare 1.0.0 release - update docs and pipeline (#165)
## What ## Why ## Notes <!-- Add any notes here --> ## Checklist * [ ] _I have read [CONTRIBUTING.md](https://github.com/codefresh-io/terraform-provider-codefresh/blob/master/CONTRIBUTING.md)._ * [ ] _I have [allowed changes to my fork to be made](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork)._ * [ ] _I have added tests, assuming new tests are warranted_. * [ ] _I understand that the `/test` comment will be ignored by the CI trigger [unless it is made by a repo admin or collaborator](https://codefresh.io/docs/docs/pipelines/triggers/git-triggers/#support-for-building-pull-requests-from-forks)._
1 parent dd0daf9 commit 88eb8fc

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

codefresh.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ steps:
4848
prepare_env_vars:
4949
title: "Preparing environment variables..."
5050
stage: release
51-
image: quay.io/codefresh/codefresh-shell:0.0.13
51+
image: quay.io/codefresh/codefresh-shell:0.0.14
5252
shell: bash
5353
environment:
5454
- GPG_FINGERPRINT=${{GPG_FINGERPRINT}}
@@ -66,7 +66,7 @@ steps:
6666

6767
release_binaries:
6868
title: Create release in Github
69-
image: goreleaser/goreleaser:v1.17.0
69+
image: goreleaser/goreleaser:v2.9.0
7070
stage: release
7171
environment:
7272
- GPG_FINGERPRINT=${{GPG_FINGERPRINT}}
@@ -80,7 +80,7 @@ steps:
8080
- gpg --import /tmp/private.key
8181
- git config user.signingkey ${GPG_FINGERPRINT}
8282
- git clean -fdx
83-
- goreleaser release --rm-dist
83+
- goreleaser release
8484
when:
8585
condition:
8686
all:

docs/resources/pipeline.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ See the [documentation](https://codefresh.io/docs/docs/configure-ci-cd-pipeline/
1313

1414
~> **NOTE:** `cron_trigger` conflicts with the deprecated [codefresh_pipeline_cron_trigger](https://registry.terraform.io/providers/codefresh-io/codefresh/latest/docs/resources/pipeline_cron_trigger) resource.
1515

16+
~> **v1.0 Changed behavior:** Previously, `permit_restart_from_failed_steps = false` resulted in “Permit restart from failed step: Use account settings”.
17+
From now on, setting `permit_restart_from_failed_steps = false` will result in “Permit restart from failed step: Forbid”. To keep previous behavior, set `permit_restart_from_failed_steps_use_account_settings = true`.
18+
1619
## Example Usage
1720

1821
```hcl

templates/resources/pipeline.md.tmpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ See the [documentation](https://codefresh.io/docs/docs/configure-ci-cd-pipeline/
1313

1414
~> **NOTE:** `cron_trigger` conflicts with the deprecated [codefresh_pipeline_cron_trigger](https://registry.terraform.io/providers/codefresh-io/codefresh/latest/docs/resources/pipeline_cron_trigger) resource.
1515

16+
~> **v1.0 Changed behavior:** Previously, `permit_restart_from_failed_steps = false` resulted in “Permit restart from failed step: Use account settings”.
17+
From now on, setting `permit_restart_from_failed_steps = false` will result in “Permit restart from failed step: Forbid”. To keep previous behavior, set `permit_restart_from_failed_steps_use_account_settings = true`.
18+
1619
## Example Usage
1720

1821
```hcl

0 commit comments

Comments
 (0)