Skip to content

feat: prepare 1.0.0 release - update docs and pipeline #165

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions codefresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ steps:
prepare_env_vars:
title: "Preparing environment variables..."
stage: release
image: quay.io/codefresh/codefresh-shell:0.0.13
image: quay.io/codefresh/codefresh-shell:0.0.14
shell: bash
environment:
- GPG_FINGERPRINT=${{GPG_FINGERPRINT}}
Expand All @@ -66,7 +66,7 @@ steps:

release_binaries:
title: Create release in Github
image: goreleaser/goreleaser:v1.17.0
image: goreleaser/goreleaser:v2.9.0
stage: release
environment:
- GPG_FINGERPRINT=${{GPG_FINGERPRINT}}
Expand All @@ -80,7 +80,7 @@ steps:
- gpg --import /tmp/private.key
- git config user.signingkey ${GPG_FINGERPRINT}
- git clean -fdx
- goreleaser release --rm-dist
- goreleaser release
when:
condition:
all:
Expand Down
3 changes: 3 additions & 0 deletions docs/resources/pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ See the [documentation](https://codefresh.io/docs/docs/configure-ci-cd-pipeline/

~> **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.

~> **v1.0 Changed behavior:** Previously, `permit_restart_from_failed_steps = false` resulted in “Permit restart from failed step: Use account settings”.
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`.

## Example Usage

```hcl
Expand Down
3 changes: 3 additions & 0 deletions templates/resources/pipeline.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ See the [documentation](https://codefresh.io/docs/docs/configure-ci-cd-pipeline/

~> **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.

~> **v1.0 Changed behavior:** Previously, `permit_restart_from_failed_steps = false` resulted in “Permit restart from failed step: Use account settings”.
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`.

## Example Usage

```hcl
Expand Down
Loading