This repository has been archived by the owner on May 30, 2024. It is now read-only.
v0.4.0
v0.4.0
Added
Deployable Ref
The configuration file provides the deployable_ref
field to verify the ref for the deployment. This feature helps users can define which branch (or tag) can be deployed. For example, v.*\..*\..*
constrain that only the semantic version tag is deployable.
envs:
- name: production
task: deploy
auto_merge: false
deployable_ref: 'v.*\..*\..*'
Auto Deployment
The configuration file provides the auto_deploy_on
field to listen for push
events and deploy automatically. It could be helpful for the situation that starts to deploy when the PR is merged.
envs:
- name: production
auto_deploy_on: refs/heads/main
Dynamic meta tags
Gitploy changes the meta tags such as title and link for each page.
Fixed
- Fix the method of creating the remote deployment(#246)