Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

v0.7.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Jun 02:49
· 36 commits to main since this release
2de636c

Features

Pipeline serialization

Gitploy prevents deployment to the same environment simultaneously. You can enable it by configuring the deploy.yml file.

envs:
  - name: prod
    serialization: true

Dynamic Payload

Gitploy supports the dynamic payload to make users deploy flexibly. For example, if a pipeline has multiple deployment strategies, a user can choose a specific deployment strategy when a user deploys.

dynamic_payload:
  enabled: true
  inputs:
    strategy:
      required: true  # Validate the field exists.
      type: select # Validate the type of value
      options:
      - default
      - canary
      - blue-green
       description: 'Deploy Strategy' # Describe the field
       default: 'default'  # Hints about default values.
Ex. Select the image pull policy

image

Activities Page

Gitploy provides the page viewing all activity logs in one place. The page can be found in the navigation bar at the top.